sreedharmc/Demo
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
=============================================================== Global setup: Set up git git config --global user.name "Sreedhar Mc" git config --global user.email [email protected] Next steps: mkdir Demo cd Demo git init touch README git add README git commit -m 'first commit' git remote add origin [email protected]:sreedharmc/Demo.git git push -u origin master Existing Git Repo? cd existing_git_repo git remote add origin [email protected]:sreedharmc/Demo.git git push -u origin master Importing a Subversion Repo? Check out the guide for step by step instructions. When you're done: Continue =========================================================== NEW LINES ARE ADDED...