常用git團隊開發命令

2021-09-27 11:49:07 字數 1213 閱讀 2346

a:改動,提交b:拉取

git clone 位址

cd tab/

拉取:git pull origin master/ (從遠端的master裡面拉取,a提交b拉取)

分支:1.建立分支:git branch lhc_branch

2.查詢分支(所有):git branch (顯示出來帶*的為當前分支)

3.切換分支:git checkout lhc_branch

4.把分支提交到遠端倉庫:git push origin lhc_branch (將此分支建立推送到github上)

練習:(建立自己的分支,並提交到遠端倉庫)

開發完後,向github進行儲存(向自己分支新增更改)

1.git branch (檢視當前所在分支:一定要確認,是當前自己建立的分支lhc_branch上,一定不要是master)

1.git branch lhc_branch

2.git add .(新增暫存區)

3.git commint -m 「 更改了開發計畫」 (提交到本地版本庫的自己的分支上)

4.(git add remote origin 「ssh位址」)

5.git push origin lhc_branch (**往分支倉庫新增)

或者1.git branch b_branch

2.git checkout b_branch (切換branch,預設為master)

3.操作**

4.往遠端倉庫提交:

git add .

git commit -m 「work b」

git push origin b_branch

分之合併:

1.向master分支合併,首先要切換到master分支上git checkout master

2.拉取(一定要做,確保master 更新了,同步master,防止master別人更新了,不同步導致版本衝突!!!):git pull origin master(遠端master拉取)

3.分之合併(b與a分支):git merge b_branch

4.合併之後的內容,推送到master上:git push origin master

提交完成後:回到自己的分支繼續開發:

git checkout lyj_branch

Git團隊開發常用命令

現在很多公司開發都用git命令上傳 極大提高了開發效率,因此總結了一些常用開發命令。配置user.name和user.email 配置user.name和user.email git config global user.name your name git config global user.e...

git團隊開發常用命令

git git clone 專案位址,把雲端的專案轉殖到本地 git pull 如果有衝突,就先儲存本地 git stash 暫時擱置當前已做的修改 git stash pop stash 還原暫存的內容 檢視擱置使用 git stash list git log 檢視日誌,可以看 push 到雲端...

團隊開發工具git常用命令

git config global user.name storm git config global user.email wuwt.dev gmail.com git config global color.ui true git config global alias.co checkout ...