如何添加一个上下文(又名右键单击)菜单到windows资源管理器,当单击时,在当前资源管理器文件夹中打开git-bash控制台?


当前回答

我已经有太多的程序想要在PATH列表中占有一席之地。为了不污染PATH列表,我选择从升高的命令提示符中添加一个符号链接,如下所示。

mklink C:\bin\git-bash.exe "C:\Program Files\Git\git-bash.exe"

虽然也有例外,但这在大多数情况下都是有效的,其中包括7-zip CLI、选定的SysInternals命令行工具、NuGet CLI和许多其他工具。

另外一个好处是,Git Bash命令行界面易于访问,这使得从打开的命令提示窗口激活它变得很简单。有了这个改进,我可能就可以在目录上下文菜单上不再有另一个项目了。

其他回答

我在一台新的Windows 10 Pro公司笔记本电脑上安装git -2.38.1-64位时遇到了这个问题。

我尝试了几种方法……并考虑了一个regedit脚本(道德上相当于“护士-电锯!”)…但是通过简单地卸载和重新安装Git(作为“Admin”)解决了这个问题。

具体地说:

Control Panel > Programs/Features > Uninstall Git Reboot Windows Reinstall Git-2.38.1-64-bit as "Admin" Carefull check all the options, especially: "Windows Explorer Integration: Git Bash Here, Git GUI Here <= These are checked by default ... and I'm sure they were both "Y" on the initial install I copied my .gitconfig ("C:\Users\USERNAME.gitconfig") from another PC <= I don't believe this was "essential" ...but I thought I'd mention it... Browse to a local Git repo and verify the Git context menus work <= Success after reinstall!

你可以安装TortoiseGit为Windows和包括集成在上下文菜单。 我认为它是在Windows上使用Git的最佳工具。

你可以为windows安装git或为windows安装Github,两者都让你在安装时选择将此功能添加到windows资源管理器中。你可以在这里找到它:

Github for Windows

https://windows.github.com/

Git for Windows

http://git-scm.com/

将gitpath添加到Environment-path变量(例如C:\Program Files\Git\ cmd),通过该变量,您可以使用命令行从任何文件夹访问git。

最简单的方法是从这里安装最新的Git。在安装时,确保启用了Windows资源管理器集成选项。

一旦你完成了,你将得到这些选项,只要你右键单击任何文件夹。

希望能有所帮助。