4
votes
4answers
886 views
git push email notification
How do I configure the appropriate git hook to send a summary email whenever a set of changes is pushed to the upstream repository?
…
0
votes
Git: removing selected commits from repository
You can non-interactively remove B and C in your example with:
git rebase --onto HEAD~5 HEAD~3 HEAD
or symbolically,
git rebase --onto A C HEAD
…
