Skip to content

Instantly share code, notes, and snippets.

@lightsound
Last active January 25, 2018 02:07
Show Gist options
  • Save lightsound/bce3e5903fc2fd36387f7c161b6a7d52 to your computer and use it in GitHub Desktop.
Save lightsound/bce3e5903fc2fd36387f7c161b6a7d52 to your computer and use it in GitHub Desktop.
GitPitchでコミットログをキレイにするためのTips
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

詳しくは公式

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment