How to keep your Git repo clean after submitting a Pull Request?
If you use Git you very likely use pull requests as well. But if you don’t then read here why you should’ve. So let’s say you do this. git branch my-feature git push -u origin my-feature Then you submit a pull-request, which as a result may accept the changes and delete the branch. Problem What