Hello I'm using Git 1.6.3.3 on Mac OS X 10.5.7, installed using MacPorts 1.710 I noticed that Git Gui cannot be launched on an existing repository by simply dragging the repository folder onto Git Gui's icon in the dock, but this is a standard UI feature in OS X. Here is a fix "Git Gui.app" (which MacPorts installs in /opt/local/share/git-gui/lib) to enable this feature. The change to Info.plist enables dropping folders onto the application. The modified AppMain.tcl, before launching the application, receives the one pending OpenDocument event and cd's to the repository folder. -Tobia --- Git Gui.app/Contents/Info.plist +++ Git Gui.app/Contents/Info.plist @@ -24,5 +24,16 @@ <string>GITg</string> <key>CFBundleVersion</key> <string>0.12.0</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeOSTypes</key> + <array> + <string>fold</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + </array> </dict> </plist> --- Git Gui.app/Contents/Resources/Scripts/AppMain.tcl +++ Git Gui.app/Contents/Resources/Scripts/AppMain.tcl @@ -19,4 +19,9 @@ unset gitexecdir gitguilib set argv [lrange $argv 1 end] -source $AppMain_source + +proc ::tk::mac::OpenDocument {args} { + cd [lindex $args 0] +} + +after 1 { source $AppMain_source } -- 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