dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.margiolis.net/dotfiles.git
Log | Files | Refs | README | LICENSE

push (121B)


      1 #!/bin/sh
      2 
      3 branch=$(git branch --show-current)
      4 for remote in $(git remote); do
      5 	git push ${remote} ${branch}
      6 done
      7 gitupd