8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This proposes a "git rebase"/"git rebase interactive" based development workflow for contributors.
It helps to keep project revision history clean and sane. For example, suppose you changed a block of code in your initial patch and submitted that as a pull request, but got a review comment that given block of code should not be changed and it should be done differently. If you just make another commit which puts original lines back, then you just added 2 noise commits to repository, not giving any value, but complicating other people's lives. For example, suppose later it was found that piece of code in question has some issue. Whoever found that, will proceed to investigate why and how it was done, and see those noise commits. And "git blame" will show you as responsible for that code, whereas you didn't really write it!
git rebase --help git stash --help
Also google it up - there're tons of tutorials, this one tries to be focused and distilled.