Fixup

  • Published on
    ## 热身运动 如果你没有设置一些惯用alias, 比如`ci`之类的,自行将`ci`替换成 `commit`。 像命令中用到的`lg1`别名,请直接跳到文章最后取配置。 为了方便理解,老灯会创建一个简单的Git仓库,用如下命令可完成: ```bash # 新建一个演练仓库 mkdir gittest cd gittest # 随便添加一个文件 touch hello.txt git add hello.txt git ci -m 'add hello.txt' # 再随便添加一个文件 touch world.txt git add world.txt git ci -m 'add world.txt' # 现在的提交是这样的 ...