This commit is contained in:
asd
2021-01-28 09:06:45 +08:00
parent f230cfc37f
commit 5d39890424
18 changed files with 1380 additions and 0 deletions

11
git/git.md Normal file
View File

@@ -0,0 +1,11 @@
# git
1. 初始化 git init
2. 查看是否绑定远程库 git remote -v
3. 绑定远程库 git remote add origin +仓库url
4. 拉取 git pull origin +分支 过程需要输入用户名和密码
5. 如需要用自己的分支 新建或者切换到自己的分支上
6. 查看更改 并提交
7. 推送 过程需要输入用户名和密码