添加分支操作
This commit is contained in:
parent
987f0966fc
commit
62c48c35fd
21
readme.md
21
readme.md
@ -1,6 +1,27 @@
|
|||||||
## readme.md
|
## readme.md
|
||||||
|
|
||||||
## Git Command Demo
|
## Git Command Demo
|
||||||
|
|
||||||
|
### 本地初始化及提交本地仓库
|
||||||
1. git init
|
1. git init
|
||||||
2. ```git add *.c```
|
2. ```git add *.c```
|
||||||
3. git commit -m "初始化项目版本"
|
3. git commit -m "初始化项目版本"
|
||||||
|
4. git log
|
||||||
|
|
||||||
|
### 推送改动到远程
|
||||||
|
1. git remote add origin <远程地址> //仅一次
|
||||||
|
2. git push origin master
|
||||||
|
|
||||||
|
|
||||||
|
### 分支操作
|
||||||
|
1. 查看分支
|
||||||
|
git branch
|
||||||
|
2. 创建分支
|
||||||
|
git branch test
|
||||||
|
3. 切换分支
|
||||||
|
git chekout test
|
||||||
|
4. 创建并切换分支
|
||||||
|
git checkout -b test
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user