Git分支建立命令

2022-06-13 08:09:12 字數 1160 閱讀 1183

一、 建立test分支提交步驟

1.列出所有分支

# git branch -a

2.建立test分支

# git branch test

3.切換到test分支:

# git checkout test

4.新增add修改:

# git add .

5.新增commit注釋

# git commit -m "第一次提交**"

6.提交到伺服器

# git push origin test

二、將test分支合併到master本地分支

1.建立test分支

# git branch test

2.切換到test分支

# git checkout test

3.在test分支新增乙個readme.txt檔案

# touch readme.txt

# git add readme.txt

4.提交commit本地檔案

# git commit -m 「增加readme.txt」

5.切換到master分支

# git checkout master

6.把test分支合併到master分支

# git merge test

7.提交master分支到伺服器

# git push origin master

8.刪除test分支

# git branch -d test

Git分支建立命令

一 建立test分支提交步驟 1.列出所有分支 git branch a 2.建立test分支 git branch test 3.切換到test分支 git checkout test 4.新增add修改 git add 5.新增commit注釋 git commit m 第一次提交 6.提交到伺...

git 命令 建立分支

1.檢視分支 git branch a2.建立本地分支並切換到新分支 git checkout b v3.6.2 分支名 3.檢視是否切換到新建分支 git branch 注意 下面執行的命令都在新建的分支中。4.git add 5.git commit m 建立分支v3.6.2 6.將本地分支推送...

Git分支建立命令

一 建立test分支提交步驟 一 建立test分支提交步驟 1.列出所有分支 git branch a 2.建立test分支 git branch test 3.切換到test分支 git checkout test 4.新增add修改 git add 5.新增commit注釋 git commit...