当前位置: 首页 > 工具软件 > git-hub > 使用案例 >

git-hub基本流程

林弘文
2023-12-01

参考:
  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





 类似资料: