[PATCH v2a 3/3] gitk: Include commit title in branch dialog

2016-03-27 Thread Rogier Goossens
Hi, I made another branch dialog related change, included in this message. It applies on top of my other two patches. Rogier. --- 8< --- 8< -- Only the SHA1 was included. It's convenient to have the title mentioned as well. Signed-off-by: Rogi

[PATCH 1/2] gitk: Add a 'rename' option to the branch context menu

2016-03-20 Thread Rogier Goossens
Signed-off-by: Rogier Goossens --- gitk | 96 1 file changed, 85 insertions(+), 11 deletions(-) diff --git a/gitk b/gitk index 805a1c7..84b49bc 100755 --- a/gitk +++ b/gitk @@ -2664,6 +2664,7 @@ proc makewindow {} { set

[PATCH v2 0/2] gitk: Two improvements to the branch context menu

2016-03-20 Thread Rogier Goossens
Hi, Hereby the revised patches. Changes since v1: - Rebased on latest master - Made the changes you suggested - Moved 'rename branch' menu option above 'delete branch' - Cleaned up some code duplication that the previous patches introduced. Rogier. -- To unsubscribe from this list: send the lin

[PATCH 2/2] gitk: Allow checking out a remote branch

2016-03-20 Thread Rogier Goossens
Git allows checking out remote branches, creating a local tracking branch in the process. Allow gitk to do this as well, provided a local branch of the same name does not yet exist. Signed-off-by: Rogier Goossens --- gitk | 36 +++- 1 file changed, 31 insertions