1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Clean Up Old Remote Tracking References as a git til.

This commit is contained in:
jbranchaud
2015-10-09 11:37:28 -05:00
parent ad7f5f476e
commit 8dd641c0db
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# Clean Up Old Remote Tracking References
After working on a Git-versioned project for a while, you may find that
there are a bunch of references to remote branches in your local repository.
You know those branches definitely don't exist on the remote server and
you've removed the local branches, but
you still have references to them lying around. You can reconcile this
discrepancy with one command:
```bash
$ git fetch origin --prune
```
This will prune all those non-existent remote tracking references which is
sure to clean up your git log (`git log --graph`).
[source](http://stackoverflow.com/a/3184742/535590)