]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Merge remote branch 'asp/master'
authorSimon Ruderich <simon@ruderich.org>
Fri, 3 Dec 2010 11:48:25 +0000 (12:48 +0100)
committerSimon Ruderich <simon@ruderich.org>
Fri, 3 Dec 2010 11:48:25 +0000 (12:48 +0100)
Conflicts:
bin/git-update.sh

1  2 
bin/git-update.sh

index 3fea2d6a7bf0c0fbefadf435d33da300957d4797,e9c0abad5b79e4e983d862b58e0fdd29b493f7e2..de71bec0dc304c78b3041bd13ae85228642f05a1
@@@ -21,14 -13,13 +21,15 @@@ if [ x$1 != x ]; the
      cd "$1"
  fi
  
 -# Get all remote changes.
 -git remote update 2>&1 | grep -v Fetching
 -# Push all local changes to remote(s).
 -for remote in `git remote`; do
 -    git push $remote 2>&1 | grep -v 'Everything up-to-date'
 -    git push --tags $remote 2>&1 | grep -v 'Everything up-to-date'
 -done
 +if [ x$LOCAL = x ]; then
 +    # Get all remote changes.
 +    git remote update 2>&1 | grep -v Fetching
 +    # Push all local changes to remote(s).
 +    for remote in `git remote`; do
 +        git push $remote 2>&1 | grep -v 'Everything up-to-date'
++        git push --tags $remote 2>&1 | grep -v 'Everything up-to-date'
 +    done
 +fi
  # Show unmerged changes.
  git branch -rv --color --no-merged
  # Show uncommitted changes.