Merge pull request #466 from fanofxiaofeng/patch-5

farward -> forward
This commit is contained in:
郑永川
2018-11-24 19:32:58 +08:00
committed by GitHub

View File

@ -90,7 +90,7 @@ Creating a new branch is quick AND simple.
# Fast forward
"快进式合并"fast-farward merge会直接将 master 分支指向合并的分支,这种模式下进行分支合并会丢失分支信息,也就不能在分支历史上看出分支信息。
"快进式合并"fast-forward merge会直接将 master 分支指向合并的分支,这种模式下进行分支合并会丢失分支信息,也就不能在分支历史上看出分支信息。
可以在合并时加上 --no-ff 参数来禁用 Fast forward 模式,并且加上 -m 参数让合并时产生一个新的 commit。