修改
This commit is contained in:
17
git/git流程..md
Normal file
17
git/git流程..md
Normal 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>
|
||||
Reference in New Issue
Block a user