git-hub基本流程


参考:
  1. 将派生出的副本克隆到本地

  2. 创建出名称有意义的分支

  3. 修改代码

  4. 检查改动

  5. 将改动提交到分支中

  6. 将新分支推送到 GitHub 的副本中

git clone https://github.com/tonychacon/blink
cd blink
git checkout -b slow-blink
git diff --word-diff
git commit -a -m 'three seconds is better'
git push origin slow-blink





猜你喜欢

转载自blog.csdn.net/qq_36974971/article/details/79507422