简体   繁体   中英

Clean of local remote branches

I have deleted branches on github and did git fetch locally.

git branch -a still lists remote branches.

  • do I have to remove local remote branches manually anyway?
  • is there a way to do an automatic cleanup of local remote branches (if something is not present on github then remove local remote branch)?

Use git fetch origin --prune . This will remove remote tracking branches that no longer exist in the remote repository.

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