git 入門操作指令

2022-04-29 11:09:12 字數 502 閱讀 8661

git add [commit file list]將已經修改的**新增索引

git commit -m [commit message]將已經索引的**修改提交至本地的庫

git push origin [branch_name]將分支 branch_name 的**推送至伺服器

git pull origin [branch_name]獲取分支 branch_name上的最新**

git pull --rebase origin [branch_name]將當前 branch 從 branch_name上做rebase

git checkout [branch_name]切換至乙個新的 branch

git checkout -b [branch_name]切換並拷貝當前 branch 到乙個新的 branch

git操作指令

git branch a 檢視所有的分支 git branch r 檢視遠端所有分支 git branch feature bbydownload forbby 基於當前的head新建本地分支。未切換 git checkout develop 切換到develop分支 git push origin...

git操作指令

1.git merge 合併 2.git fetch 從遠端獲取最新版本到本地,不會自動merge git fetch origin master即3 git pull 從遠端獲取最新版本並merge到本地 git pull origin master 即相當於git fetch 和 git mer...

git 操作指令

一 分支操作 建立並切換分支 git checkout b 轉殖分支 git clone 預設master分支,然後建立並切換本地分支追蹤遠端相應分支 git checkout b git checkout b origin dev 合併分支 git merge no ff no ff 禁止快進式合...