Last active
January 12, 2016 23:27
-
-
Save rage-shadowman/6471929 to your computer and use it in GitHub Desktop.
This is a git pre-receive hook for backups of git-svn clones to keep from pushing anything to the backup repository that doesn't have a git-svn-id (reject anything that did not get dcommitted first). Recommended for backups created using: https://gist.github.com/rage-shadowman/6472005
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
. git-sh-setup | |
read oldValue newValue refName | |
if ! git log -1 $newValue | grep -q '^ git-svn-id: ' | |
then | |
echo "Must not commit to Git unless already dcommitted to SVN!" | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not sure the git-sh-setup line is needed. I just stuck it in there while I was writing the thing and never removed it since it is working and this file was propagated to all my repos anyway as they are under gitolite.