serendipity
Git 명령어 3 본문
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
Comments