Last active
August 29, 2015 13:57
-
-
Save 0x4a/9464998 to your computer and use it in GitHub Desktop.
#git #cli - initial empty commit
This file contains hidden or 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/bash | |
# make an alias | |
git config --global alias.initempty '!git init && git commit -m "(initial empty commit)" --allow-empty' |
This file contains hidden or 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/bash | |
# do empty commit | |
git commit -m "(initial empty commit)" --allow-empty |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment