Skip to content

Instantly share code, notes, and snippets.

@ichikaway
Created December 8, 2009 02:59
Show Gist options
  • Save ichikaway/251374 to your computer and use it in GitHub Desktop.
Save ichikaway/251374 to your computer and use it in GitHub Desktop.
Global setup:
Download and install Git
git config --global user.name "Yasushi Ichikawa"
git config --global user.email ichikaway@gmail.com
Next steps:
mkdir vim
cd vim
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin git@github.com:ichikaway/vim.git
git push origin master
Existing Git Repo?
cd existing_git_repo
git remote add origin git@github.com: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