Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 377 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 377 Bytes

git-primer-checkpoint

Practice with git and github.com

Few git commands to remember :

  1. git init

  2. git add .

  3. git commit -m "message"

  4. git remote add origin "github.com/your_repo.git"

  5. git push -u origin master

  6. git clone <url.git>

  7. git branch (branch name)

  8. git branch

  9. git checkout (branch name)

  10. git diff (branch1) (branch2)