blob: 00594487ad6ba61c0fb8b9ea27bac665717f8cf1 (
plain)
- # main local branch (the one we want checked out)
- master = master
- # all local branches (including those needed by child clones)
- branches = $(master)
- # local name of origin
- origin = origin
- currentbranch = $(shell git branch | grep ^\* | awk '{ print $2 }')
- noncurrentbranches = $(filter-out $(currentbranch),$(branches))
- update:
- git fetch $(origin)
- $(if $(filter $(currentbranch),$(master)),,git branch -f "$(master)" "$(origin)/$(master)" && git checkout "$(master)")
- git merge --no-commit "$(origin)"
- $(if $(noncurrentbranches),$(foreach branch,$(noncurrentbranches),git branch -f "$(branch)" "$(origin)/$(branch)" && git checkout "$(branch)" && git merge --no-commit "$(origin)" &&) git checkout "$(master)")
- init:
- git init
- git remote add -f -m "$(master)" origin "$(origin)"
- git merge origin
- # git config remote.origin.push +"refs/heads/$(master)":"refs/heads/$(master)"
- .PHONY: update init
|