markdown GitPitchでコミットログをキレイにするための提示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown GitPitchでコミットログをキレイにするための提示相关的知识,希望对你有一定的参考价值。

```
git checkout -b presentation-dev-branch

#
# Now develop your presentation content in this branch,
# committing as often as you want
# Then when you are finished, do the following:
#

git checkout master
git merge --squash presentation-dev-branch

#
# Now bundle all of your commit changes from your branch
# into a single commit on master ready for one final push
#

git add -A
git commit -m "Completed GitPitch presentation."
git push
```

詳しくは[公式](https://github.com/gitpitch/gitpitch/wiki/Clean-Commit-History)

以上是关于markdown GitPitchでコミットログをキレイにするための提示的主要内容,如果未能解决你的问题,请参考以下文章

markdown コミットにタグをつける

markdown 空コミットする

markdown MySQL的のオートコミット

markdown 过去のすべてのコミットのとCommiter作者を変更する

markdown ファイル削除をしたコミット履歴だけを表示する

markdown ブランチのコミットを他のブランチに付け替える