Skip to content

Instantly share code, notes, and snippets.

@zzj99
Last active April 9, 2016 14:51
Show Gist options
  • Save zzj99/c3e188f7b8fb7b0c13fc8acc2e0fd0d5 to your computer and use it in GitHub Desktop.
Save zzj99/c3e188f7b8fb7b0c13fc8acc2e0fd0d5 to your computer and use it in GitHub Desktop.
git create repository, replace USER, REPO with corresponding name
mkdir REPO
cd REPO
git init
git remote add origin git@github.com:USER/REPO.git
git add .
git commit
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment