添加分支操作

This commit is contained in:
terryLP 2024-08-28 15:14:59 +08:00
parent 987f0966fc
commit 62c48c35fd

View File

@ -1,6 +1,27 @@
## readme.md
## Git Command Demo
### 本地初始化及提交本地仓库
1. git init
2. ```git add *.c```
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
###