Just gitk or gitk --all can try to fill up all memory on big repository.

I know than I can gitk -n 1000 to limit it. Also I can killall git (or even Alt+SysRq+F if haven't stopped it in time) to stop it in middle of thrashing.

Is there more proper way to make gitk don't load more commits and stop it's git subprocess without hacks or lengthy gitk restart?

link|improve this question

62% accept rate
I don't see what's wrong with gitk -n 1000. You can even alias gitk --all -n 1000 --whatever-other-options-you-like to gitk. – MatrixFrog Mar 10 '11 at 3:16
1  
@MatrixFrog, Because of I don't know how many commits I need until I see the commit I am looking for. And I want to use one command for accessing recent commits and deep history i.e. don't think about whether it is deep or recent before seeing commit messages. – Vi. Mar 10 '11 at 9:29
feedback

1 Answer

You can also limit gitk by branchname. Instead of using gitk --all to see all branches, just use 'gitk branchname'. This might limit the range of commits.

link|improve this answer
1  
I know it, I want to make it stop after it has been launched. – Vi. May 31 '11 at 16:39
feedback

Your Answer

 
or
required, but never shown

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