diff options
author | Jonas Smedegaard <dr@jones.dk> | 2008-08-15 21:53:31 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2008-08-15 21:53:31 +0200 |
commit | 5e7cf797e8f7422d56e8e72ca3a3966488b20bda (patch) | |
tree | 9afbebdecf0d17f90b6f79af136eed17ed82dccd /make | |
parent | f02096c6e8e38352a748a777d6ac5f7ab0165fbb (diff) | |
parent | 072107161e7955159e8fdbb3fba9b442ceee197a (diff) |
Merge branch '_multilang' into multilang
Diffstat (limited to 'make')
-rw-r--r-- | make/git.mk | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/make/git.mk b/make/git.mk index 072617e..5595057 100644 --- a/make/git.mk +++ b/make/git.mk @@ -7,14 +7,23 @@ branches = $(master) # local name of origin origin = origin -currentbranch = $(shell git branch | grep ^\* | awk '{ print $2 }') -noncurrentbranches = $(filter-out $(currentbranch),$(branches)) +currentbranch := $(shell git branch | grep ^\* | awk '{ print $2 }') +noncurrentbranches := $(filter-out $(currentbranch),$(branches)) + +#originbranches := $(shell git branch -r | perl -ne 'm,^.\s+'"$$origin"'/([a-z_]\S+)$, && print "$$1\n"' ) +localbranches := $(shell git branch | perl -ne 'm,^.\s+([a-z_]\S+)$$, && print "$$1\n"' ) update: git fetch $(origin) - $(if $(filter $(currentbranch),$(master)),,git branch -f "$(master)" "$(origin)/$(master)" && git checkout "$(master)") - git pull "$(origin)" - $(if $(noncurrentbranches),$(foreach branch,$(noncurrentbranches),git branch -f "$(branch)" "$(origin)/$(branch)" && git checkout "$(branch)" && git pull "$(origin)" &&) git checkout "$(master)") + for branch in $(filter-out $(localbranches),$(branches)); do \ + git branch $$branch $(origin)/$(branch); \ + done + git checkout $(master) + git pull $(origin) + for branch in $(noncurrentbranches); do \ + git checkout $(branch); \ + git pull $(origin); \ + done init: git init |