Skip to content

Instantly share code, notes, and snippets.

@Amitesh
Created July 13, 2011 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Amitesh/1080491 to your computer and use it in GitHub Desktop.
Save Amitesh/1080491 to your computer and use it in GitHub Desktop.
How to setup new gist repo
Global setup:
Set up git
git config --global user.name "Amitesh Kumar"
git config --global user.email amitesingh@gmail.com
Next steps:
mkdir TinyMCE-YouTube-Plugin
cd TinyMCE-YouTube-Plugin
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin git@github.com:Amitesh/TinyMCE-YouTube-Plugin.git
git push -u origin master
Existing Git Repo?
cd existing_git_repo
git remote add origin git@github.com:Amitesh/TinyMCE-YouTube-Plugin.git
git push -u origin master
Importing a Subversion Repo?
Click here
When you're done:
Continue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment