Re: [PATCH v2] gitk: add -C <path> commandline parameter to change path

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 06.11.2015 11:48, Eric Sunshine wrote:
On Thu, Nov 5, 2015 at 4:19 AM, Juha-Pekka Heikkila
<juhapekka.heikkila@xxxxxxxxx> wrote:
This patch adds -C (change working directory) parameter to
gitk. With this parameter, instead of need to cd to directory
with .git folder, one can point the correct folder from
commandline.

Thanks, -C makes more sense than --cwd, and is more consistent with
other commands.

You'll want to also address the patch to Paul Mackerras (I've cc:'d
him) since he's the gitk maintainer, and Junio pulls gitk from him.

v2: Adjusted the parameter as per Eric's suggestion. I think
     it now work in similar manner as in many GNU tools as well
     as git itself.

This sort of explanation of of changes between versions is definitely
welcome, but should be placed below the "---" line just under your
sign-off so that it does not become part of the permanent commit
message.

Ok, I'll make bit later another version. I didn't realize to check where to put this comment as some projects want these in the commit message.


Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@xxxxxxxxx>
---

You'd place your commentary about changes between patch versions here.
More below...

  Documentation/gitk.txt |  7 +++++++
  gitk-git/gitk          | 26 +++++++++++++++++---------
  2 files changed, 24 insertions(+), 9 deletions(-)

diff --git a/gitk-git/gitk b/gitk-git/gitk
@@ -12279,20 +12279,14 @@ setui $uicolor

  setoptions

-# check that we can find a .git directory somewhere...
-if {[catch {set gitdir [exec git rev-parse --git-dir]}]} {
-    show_error {} . [mc "Cannot find a git repository here."]
-    exit 1
-}
-
  set selecthead {}
  set selectheadid {}

  set revtreeargs {}
  set cmdline_files {}
-set i 0
  set revtreeargscmd {}
-foreach arg $argv {
+for {set i 0} {$i < [llength $argv]} {incr i} {
+       set arg [lindex $argv [expr {$i}]]
      switch -glob -- $arg {
         "" { }
         "--" {
@@ -12305,11 +12299,25 @@ foreach arg $argv {
         "--argscmd=*" {
             set revtreeargscmd [string range $arg 10 end]
         }
+       "-C*" {
+               if {[string length $arg] < 3} {
+                       incr i
+                       cd [lindex $argv [expr {$i}]]

What happens if no arguments follow -C (that is, the entire
command-line is "gitk -C")? Will this simply run "cd" with no argument
or with an empty argument or error out or what? Should there be a
check for this condition?

+                       continue

Why does this 'continue' need to be here? Am I missing something obvious?


I'll add the missing try/catch for these cd commands, I slowly start to understand how tcl work. Earlier catch was not for some reason needed here when the loop was ran with 'foreach', error was reported once reached UI but now it seem to advertise "error in startup script.." 'continue' was part of this skipping but doesn't do its trick anymore.

Anyway, I'll make v3 and resend. :)

+               } else {
+                       cd [string range $arg 2 end]
+               }
+       }
         default {
             lappend revtreeargs $arg
         }
      }
-    incr i
+}
+
+# check that we can find a .git directory somewhere...
+if {[catch {set gitdir [exec git rev-parse --git-dir]}]} {
+    show_error {} . [mc "Cannot find a git repository here."]
+    exit 1
  }

  if {$selecthead eq "HEAD"} {
--
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]