“在Windows中克隆”按钮 - 它是如何工作的?

时间:2012-11-20 08:09:09

标签: github

我很好奇按钮是如何工作的。你能解释一下,当我点击“在Windows中克隆”按钮时,它知道如何在我的机器上打开一个本地应用程序(GitHub)。

2 个答案:

答案 0 :(得分:4)

查看this patchGitExtension:它在HKCR注册该行动

  <Component Id="Protocol.github_windows" Guid="*">
    <RegistryKey Key="github-windows" Root="HKCR">
      <RegistryValue Value="URL: Github for Windows Protocol" Type="string" />
      <RegistryValue Name="URL Protocol" Value="" Type="string" />
    </RegistryKey>
    <RegistryKey Key="github-windows\DefaultIcon" Root="HKCR">
      <RegistryValue Value="[INSTALLDIR]GitExtensions.exe" Type="string" />
    </RegistryKey>
    <RegistryKey Root="HKCR" Key="github-windows\shell"/>
    <RegistryKey Root="HKCR" Key="github-windows\shell\open"/>
    <RegistryKey Root="HKCR" Key="github-windows\shell\open\command">
      <RegistryValue Value="&quot;[INSTALLDIR]GitExtensions.exe&quot; %1" Type="string" />
    </RegistryKey>
  </Component>

它补充道:

if (args[1].StartsWith("git://"))
{
    args = new string[]{args[0], "clone", args[1]};
}
if (args[1].StartsWith("github-windows://openRepo/"))
{
     args = new string[]{args[0], "clone", args[1].Replace("github-windows://openRepo/", "")};
}

GitHub for Windows会采用类似的方法。

答案 1 :(得分:0)

在TortoiseGit应用程序中非常相似。

这是来自TortoiseGit的github-windows protocol handler

newCmd.Format(_T("/command:clone /url:\"%s\" /hasurlhandler"), (LPCTSTR)url);

注册处理程序adds registry keys

<RegistryValue Root="HKLM" Key="Software\Classes\github-windows\shell\open\command" Value="&quot;[INSTALLDIR]bin\TortoiseGitProc.exe&quot; /urlhandler:&quot;%1&quot;" Type="string" />