Skip to content
Dharmavirsinh Jhala edited this page Jul 31, 2013 · 2 revisions

Tips:

  • git merge --no-ff can be used to ensure that a merge commit is always created.
  • We recommend every repository include a README, LICENSE, and .gitignore.

Create a new repository on the command line

touch README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/dharmavir/Git-Help.git git push -u origin master

Push an existing repository from the command line

git remote add origin https://github.com/dharmavir/Git-Help.git git push -u origin master

Clone this wiki locally