What is “Git”?

What is “Version Control”?

What is “GitHub”?

git command

  • git add
    • git add . : git add all modified file
    • git add \ </code> : git add specific file
  • git commit
    • git commit -s
    • git commit -m
    • git commit --amend
  • git push
    • git push
    • git push –force
  • git fetch
  • git merge
  • git remote
    • git remote -v
    • git remote remove <name>
    • git remote add <name> <url>
  • git rebase
  • git status
  • git log
    • git log
    • git log --oneline : show git log in 1 line
  • git patch
    • git format-patch
  • git branch
  • git checkout
    • git checkout <branch name>
    • git checkout -D <delete branch name>
Reference