Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 541 Bytes

05_Comandos_Git.md

File metadata and controls

21 lines (20 loc) · 541 Bytes

Comandos Git mais utilizados

  • git clone
  • git add .
  • git status
  • git add
  • git commit -m "Mensagem"
  • git log
  • git log -n 3
  • git log --oneline
  • git push origin main
  • git push origin +main (git push origin main --force)
  • git fetch origin main
  • git pull origin main
  • git pull --rebase origin main
  • git cherry-pick
  • git branch -a
  • git checkout -b
  • git checkout
  • git merge
  • git diff