Dev/Git

Git 명령어 3

z 2021. 8. 16. 15:36
728x90

 

🐼 <Synchronize Git>

 

Get the latest changes from origin (no merge)

$ git fetch

 

Fetch the latest changes from origin and merge

$ git pull

 

 

Fetch the latest changes from origin and rebase

$ git pull --rebase

 

 

Push local changes to the origin

$ git push

 

* compulsion 

$ git push -f
728x90