我也不知道为什么最近github的下载源码url的位置少了git clone。以前都是显示git clone 地址这样。
每次我打开cmd要git clone的时候就要手动输入,特别麻烦。
我不是专业程序员,可能是我没玩明白。
所以是因为懒的原因。
我就自己写了个批处理
可以右键点一下就打开cmd 自动给我输入git clone。我只需要输入后面的地址就行了。
[PowerShell] 纯文本查看 复制代码 @echo off
rem 打开一个新的命令提示符窗口,并预输入git clone
powershell -NoExit -Command "Write-Host 'git clone ' -NoNewline; $input = Read-Host; $command = 'git clone ' + $input; Invoke-Expression $command"
exit
[Bash shell] 纯文本查看 复制代码 Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\git clone到这里]
"Icon"="E:\\software\\Git\\git-bash.exe"
[HKEY_CLASSES_ROOT\Directory\Background\shell\git clone到这里\command]
@="E:\\开发工具\\网站开发\\git.bat \"%V\""
注册表的键值需要你手动修改bat的位置。
运行后。
git右键菜单.zip
(798 Bytes, 下载次数: 10)
|