[PATCH 3/6] Add a tree view to the local branches, remote branches and tags, where / is treated as a directory seperator.

2016-12-15 Thread Pierre Dumuid
Signed-off-by: Pierre Dumuid <pmdum...@gmail.com> --- gitk | 117 +++ 1 file changed, 117 insertions(+) diff --git a/gitk b/gitk index 36cba49..a894f1d 100755 --- a/gitk +++ b/gitk @@ -2089,6 +2089,10 @@ proc make

[PATCH 5/6] gitk: Add a "Save file as" menu item

2016-12-15 Thread Pierre Dumuid
evision. Signed-off-by: Andreas Amann <andreas.am...@web.de> Signed-off-by: Pierre Dumuid <pmdum...@gmail.com> --- gitk | 36 1 file changed, 36 insertions(+) diff --git a/gitk b/gitk index 5f27716..0903d2d 100755 --- a/gitk +++ b/gitk @@ -2693,6

[PATCH 6/6] Rename 'remotes/' to 'r../' in heads

2016-12-15 Thread Pierre Dumuid
Signed-off-by: Pierre Dumuid <pmdum...@gmail.com> --- gitk | 19 ++- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/gitk b/gitk index 0903d2d..6f50b06 100755 --- a/gitk +++ b/gitk @@ -6731,22 +6731,28 @@ proc drawtags {id x xt y1} { set yb [exp

[PATCH 4/6] Add DirDiffTool as additional option

2016-12-15 Thread Pierre Dumuid
Signed-off-by: Pierre Dumuid <pmdum...@gmail.com> --- gitk | 17 + 1 file changed, 17 insertions(+) diff --git a/gitk b/gitk index a894f1d..5f27716 100755 --- a/gitk +++ b/gitk @@ -2661,6 +2661,9 @@ proc makewindow {} { {mc "Diff this -> marked commit"

[PATCH 1/6] Enable ability to visualise the results of git cherry C1 C2

2016-12-15 Thread Pierre Dumuid
It's a bit clunky but it works!! Usage: - mark commit one (e.g. v45) - Select commit two. - Switch the gdttype to the option, "git-cherry between marked commit and:" Signed-off-by: Pierre Dumuid <pmdum...@gmail.com>

[PATCH 2/6] Add ability to follow a remote branch with a dialog

2016-12-15 Thread Pierre Dumuid
A suggested name is provided when creating a new "following" branch. Signed-off-by: Pierre Dumuid <pmdum...@gmail.com> --- gitk | 86 1 file changed, 82 insertions(+), 4 deletions(-) diff --git a/gitk b/gi