git命令步驟

2021-08-21 10:22:41 字數 711 閱讀 2684

git clone -b

git branch 檢視本地的分支

git branch -r 檢視遠端的分支

git branch -a 檢視本地和遠端的分支

git add * 提交

git commit -m 「」把暫存區內容新增到本地修改

git checkout 分支名  切換分支

【demo】: 主分支:sas_l

git checkout -b sas_l_leile 新建自己的分支

git merge sas_l 並切到自己的分支

【提交步驟】:

sas_l_le 在自己的分支上把**push上主分支

(1)git status 檢視本地是否有改動

(2)git add .

(3)git commit -m 「」提交日誌

(4)git push

(5)git --set-upstream sas_l_le

(6)git checkoutsas_l 切到主分支

(7)git pull

(8)git checkoutsas_l_le

(9)git merge sas_l

(10)git checkoutsas_l

(11)git mergesas_l_le

(12)git add .

(13)git pull

(14)git push

git 命令步驟

現在的專案是多人開發的,在git上傳 時,很容易出問題。我們在改動了自己的 後,想上傳到遠端伺服器,要輸入一下命令 git add 字面意思,新增 git commit m 你想要寫的注釋 提交到本地 git pull 我們在push到遠端伺服器之前,要先從遠端拉去 就執行這個命令就好了 如果pul...

Git上傳步驟及命令

現在有兩個分支dev和test 兩個 a負責dev分支,b負責test分支 這個時候,a和b本地都有專案 的轉殖,b將自己需要完成的工作寫到test分支裡面去,而a見自己的 寫到dev分支裡面去,專案經理負責將dev分支和test分支一同合併到master主分支裡面去。b將自己的 寫完之後,提交到本...

git使用步驟

git 使用步驟 1 建分支 project team switch to new branch 2 提交分支 注意 提交分支前必須先pull project team pull 1 project team commit commit and push 2 project team remote ...