* [PATCH] Associate 'git gui clone' with the git:// protocol
@ 2008-10-03 12:19 Petr Baudis
0 siblings, 0 replies; only message in thread
From: Petr Baudis @ 2008-10-03 12:19 UTC (permalink / raw)
To: msysgit; +Cc: git
This MSysGit patch makes the installer register 'git gui clone'
as the Git URL protocol handler. This depends on the 'git gui clone'
functionality itself, of course - currently in the process of getting
accepted upstream (hopefully).
Signed-off-by: Petr Baudis <petr.baudis@novartis.com>
---
Sorry if the line offsets are a bit off.
diff --git a/share/WinGit/install.iss b/share/WinGit/install.iss
index 05fdae6..82e8ecf 100644
--- a/share/WinGit/install.iss
+++ b/share/WinGit/install.iss
@@ -484,6 +484,16 @@ begin
// so we continue.
end;
end;
+
+ if (not RegWriteStringValue(HKEY_CLASSES_ROOT,'git','','URL:Git Protocol'))
+ or (not RegWriteStringValue(HKEY_CLASSES_ROOT,'git','URL Protocol',''))
+ or (not RegWriteStringValue(HKEY_CLASSES_ROOT,'git\shell\open\command','','"'+AppDir+'\bin\wish.exe" "'+AppDir+'\bin\git-gui" "clone" "%1"')) then begin
+ Msg:='Line {#emit __LINE__}: Unable to set up the "git://" URL protocol handler.';
+ MsgBox(Msg,mbError,MB_OK);
+ Log(Msg);
+ // This is not a critical error, the user can probably fix it manually,
+ // so we continue.
+ end;
end;
{
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-10-03 12:21 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-03 12:19 [PATCH] Associate 'git gui clone' with the git:// protocol Petr Baudis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).