250x250
Notice
«   2025/12   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Today
Total
관리 메뉴

serendipity

Git 명령어 3 본문

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

'Dev > Git' 카테고리의 다른 글

Git 깃  (0) 2021.08.16
Git 명령어 2  (0) 2021.08.16
Git 명령어 1  (0) 2021.08.16
Comments