git-gone
lists and prunes “gone” branches.
A “gone” branch is a local branch whose upstream branch no longer exists. This frequently occurs in a pull request workflow:
Over time and after many pull request you accumulate many of these branches which reference long-merged pull requests and serve no further purpose.
git gone can list these branches and automatically prune them from your clone to cleanup the debris of pull requests.
To fetch and prune and then delete all gone branches:
console
$ git gone -fv prune
The command prints undo information, so you can always restore a branch if you’d like to keep it.
Alternatively fetch first and then just prune gone branches:
console
$ git fetch --all --prune
$ git gone prune
Install from crates.io
console
$ cargo install git-gone
All credits for the idea go to Eugene Yokota:
Copyright 2018-2019 Sebastian Wiesner sebastian@swsnr.de
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.