Created
August 1, 2011 00:57
-
-
Save spatzle/1117408 to your computer and use it in GitHub Desktop.
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
mkdir free_monkey | |
cd free_monkey | |
git init | |
git remote add origin git@YOUR_SERVER_HOSTNAME:free_monkey.git | |
# do some work, git add and commit files | |
# need the allow empty flag | |
git commit -a -m "added files" --allow-empty | |
git push origin master:refs/heads/master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment