git-trim
automatically trims your remote tracking branches that are merged or gone.
PATH
directories.cargo install git-trim
if you have cargo
git push -u <remote> <branch>
will set upstream for you on push.git trim
if you need to trim branches especially after PR reviews. It'll automatically recognize merged or gone branches, and delete it.git trim --filter all
git trim --dry-run
when you don't trust me.Git's PR workflow is a little bit tedious as a routine. There are so many lines of commands to type and many statuses of branches that corresponding to PRs that you've sent. Were they merged or rejected? Did I forget to delete the remote branch after it is merged?
After the PR is merged or rejected, you're likely to do this: ```shell script git remote update --prune
git branch --delete --force feature/patch1
git push --delete origin feature/patch1
``
You repeat these same commands as much as PRs that you've sent.
You have to remember what branch is for the PR that just have been closed and it is easy to make a mistake.
I feel nervous whenever I put
--forceflag. Rebase merge forces to me to use
--force(no pun is intended).
git reflogis a fun command to play with, isn't it? Also
git remote updateand
git push` is not instantaneous.
I hate to wait for the prompt even it is a fraction of a second when I have multiple commands to type.
That's why I've made git-trim
.
It knows whether a branch is merged into the default base branch, or whether it is rejected.
It can even push --delete
when you forgot to delete the remote branch if needed.
merged
and gone
branch?A merged branch is a branch that you can safely remove them. It is already merged into the base branch, so you're not going to lose the changes.
However, your PRs are sometimes rejected and deleted from the remote.
Or you might forget the fact that the PR is merged.
So you might have been mistakenly amended or rebased the branch and the patch is now completely different from the patch that is merged.
Then it is gone
, which means that you might lose your changes. The term is borrowed from the git's remote tracking states.
The logo is a derivative work of Git Logo. Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.