Hi: On Sat, May 17, 2008 at 5:59 PM, gedw99 <[EMAIL PROTECTED]> wrote: > > 1. How to visualise what is in a branch from a folder point of view ?
The question is unclear. As you mention, gitk shows the basic file status when one selects "Tree" in the right hand side details pane. This is probably the massaged output of "git ls-tree -r --name-only <tree-ish>" > 2. doing deep diff and merge. I cant seem to see any command to do a > diff in gitK. Its always greyed out n the branches view in the top > left. What do i need to do to make this work. i am missing something > obvious i bet. For a diff, you need to click on the description text to select a commit, then hover over your target commit's description text and right-button click to get the "Diff this -> selected" and "Diff selected -> this". The diff pane will then be filled with unified-diff format info, probably the output of "git diff-tree <src-tree-ish> <tgt-tree-ish>" As far as I know, gitk does not support merging. Try the command line for that. Best regards, Clifford Caoile
