Skip to content

Instantly share code, notes, and snippets.

@oh-sky
Created February 26, 2014 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oh-sky/9227945 to your computer and use it in GitHub Desktop.
Save oh-sky/9227945 to your computer and use it in GitHub Desktop.
originへのpush時に、originでない別のリモートにもpushするgit hooks
#!/bin/sh
BUCKUPREMOTENAME='AnotherRemoteName'
BRANCHNAME=`git rev-parse --abbrev-ref HEAD`
if test $BUCKUPREMOTENAME != $1 ; then
git push $BUCKUPREMOTENAME $BRANCHNAME
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment