Created
December 8, 2009 02:59
-
-
Save ichikaway/251374 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
Global setup: | |
Download and install Git | |
git config --global user.name "Yasushi Ichikawa" | |
git config --global user.email [email protected] | |
Next steps: | |
mkdir vim | |
cd vim | |
git init | |
touch README | |
git add README | |
git commit -m 'first commit' | |
git remote add origin [email protected]:ichikaway/vim.git | |
git push origin master | |
Existing Git Repo? | |
cd existing_git_repo | |
git remote add origin [email protected]:ichikaway/vim.git | |
git push origin master | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment