简体   繁体   中英

How can I delete all local branches which would result in no changes if merged into master?

I know how to delete all local branches that have been merged . However, and I believe this is due to Github's new pull request squash and merge feature, I find myself being left with a lot of local branches that are unmerged, but if merged into master would result in no changes.

How can I prune these local branches, ie those local branches which haven't necessarily been merged, but wouldn't affect master (or, more generically, the current branch)?

There is no perfect solution but you can get close, perhaps close enough.

Be sure to start with a clean work tree and index (see require_clean_work_tree in git-sh-setup ).

For each candidate branch $branch that might be delete-able:

  1. Find its merge target (presumably merge_target=$(git config --get branch.${branch}.merge) ). Check out the merge target.
  2. Do a merge with --no-commit ; or in step 1, check out with --detach so that you will get a commit you can abandon, if the merge succeeds.
  3. Test whether git thinks the merge succeeded, and if so, whether the current tree matches the previous tree, ie, brought in no changes. If you can test exact matches, and if you allow the commit to happen (via --detach ), you can do this last test very simply, without any diff-ing: run both git rev-parse HEAD^{tree} and git rev-parse HEAD^^{tree} 1 and see if they produce the same hash. If you don't allow the commit, you can still git diff the current ( HEAD ) commit against the proposed merge. If you need to remove some noise from the diff (eg, config files that should not be, but are anyway, in the commits), this gives you a place to do it.
  4. Reset ( git merge --abort; git reset --hard HEAD; git clean -f or similar, depending on how you have decided to implement steps 1-3). This is just meant to make your work tree and index clean again, for the next pass.
  5. If the merge in step 3 worked and introduced no changes, you may delete the local branch. Otherwise, keep it.

In essence, this is "actually do the merge and see what happens", just fully automated.


1 This notation looks a bit bizarre, but it's just HEAD^ —the first parent of HEAD —followed by ^{tree} . Alternate spellings might be easier to read: HEAD~1^{tree} or ${merge_target}^tree , where ${merge_target} is the branch you checked out in step 1. Note that this assumes the merge succeeded. The merge result is in the exit status of git merge : zero means succeeded, nonzero means failed and needs manual assistance, presumably due to a merge conflict.

If you run git "branch -v" the tracking branches which have changes will have "ahead" written next to them.

The other two options: "behind" and if nothing is written, means that the branches have no changes that will affect the branches they track.

You can therefore run "git fetch" to update the remote tracking branches then parse the "git branch -v" results to figure out which branches have no changes and which branches have.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM