4

Is it possible to hide closed remote brances in sourcetree? I would not want the remote section to show all old remotes, which has really been closed already.

Ville Miekk-oja
  • 18,749
  • 32
  • 70
  • 106
  • `git` has no concept of an "open" vs "closed" branch. It does, however allow for deleting a branch pointer, or renaming a branch pointer, possibly with a name like "closed/originalbranchname"... – twalberg Oct 22 '15 at 21:26

1 Answers1

1

According to this seems like you cannot close a branch on git.

One workaround is that you can rename your branches from bName to oldClosedBranches/bName then you will keep just one 'folder' for all of them.

Rename-master-branch-for-both-local-and-remote-git-repositories

Community
  • 1
  • 1
mayo
  • 3,845
  • 1
  • 32
  • 42