This commit is contained in:
LL
2025-11-27 09:00:16 +08:00
parent 502f37729f
commit 03a08d8abc
3 changed files with 94 additions and 0 deletions

17
git/git流程..md Normal file
View File

@@ -0,0 +1,17 @@
1. 初始化git
1. git init
2. 绑定远程仓库链接
1. git remote add origin <url>
3. 创建新分支并且切换到新分支
1. git ckeckout -b <name>
4. 添加所有文件
1. git add .
5. 添加提交说明
1. git commit -m "Commit message"
6. 提交到仓库
1. git push origin <name>