Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to make gitk show only local branches? Or even better - can I hide remote branches that do not have corresponding local branches?

share|improve this question

3 Answers

Edit -> Preferences -> Hide remote refs

share|improve this answer
This hides only labels, I would like related commits to be hidden as well. i41.tinypic.com/33pf3hy.jpg – Sergiy Byelozyorov Apr 11 '12 at 12:27
up vote 0 down vote accepted

After some experimenting I have found a solution. The following command works:

echo $(git branch) | gitk

It shows only those remote branches that have corresponding local branches. It is important to use echo $(git branch) since it forces branch to return raw list of branches instead of formatted output such as the following:

$ git branch
  develop
  release-M4.1
  vendor
* xflow
share|improve this answer
Try just running echo $(git branch); you should see all the files in your current directory as well, due to the asterisk in the output of git branch. – chepner May 4 '12 at 20:28
I have specifically used echo to hide git's asterisk. I believe git is able to detect when it is being run as part of "echo" or not. It won't print asterisk from within echo. – Sergiy Byelozyorov Feb 11 at 23:31
This seems to be shell-dependent rather than anything to do with git. I see the * expanded into file names when I run it in bash or ksh, but the * is left alone when I run it in zsh. – chepner Feb 11 at 23:40
I used bash. Unfortunately I don't the the setup anymore to test it again. – Sergiy Byelozyorov Feb 12 at 17:34

Go to View -> Edit View and choose "All (local) branches"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.