Compare commits

...

1 Commits

Author SHA1 Message Date
terryLP
b3b0aba772 更新branch操作 2024-08-29 10:11:45 +08:00

View File

@ -22,6 +22,10 @@ git branch test
git chekout test
4. 创建并切换分支
git checkout -b test
5. 提交分支
git push origin test
6. 删除分支
git checkout master
git branch -d test
###