0%

【git 使用】clone、branch、add、commit、push

克隆仓库

  • 普通
1
git clone git@xxx.git
  • 指定branch
1
git clone git@xxx.git -b <branchname>

提交修改

  • 提交某个文件
1
2
3
git add <path to file>
git commit -m '<message>'
git push origin <branchname>
  • 提交多个文件
1
2
3
git add --all
git commit -m '<message>'
git push origin <branchname>