I have PyCharm and I am looking around trying to find git.exe to set it up with my repo.
What is the PATH to git.exe?
dialex
2,6868 gold badges44 silver badges74 bronze badges
asked Aug 13, 2012 at 5:23
8
If you’re using GitHub for Windows, git.exe may not be in your PATH, but you may find it in a location like: C:Users<username>AppDataLocalGitHubPortableGit_<numbersandletters>bingit.exe
That’s the situation for me, in Windows 7 + version 1.0 of GitHub for Windows.
In Windows 10 it appears to be in:
C:Users<username>AppDataLocalGitHubPortableGit_<numbersandletters>cmdgit.exe
( cmd versus bin)
From GitHub Desktop 1.1
The UI is different and the Git path now is in:
C:Users<username>AppDataLocalGitHubDesktopapp-<appversion>resourcesappgitcmdgit.exe
PS: AppData is a hidden folder by default.
13
If git.exe
is indeed in your %PATH%
(that is, if you can type a git --version
in a DOS windows), then which git.exe
will tell you where.
(provided you did install GoW: Gnu on Windows: 130 unix commands compiled for windows, including which
).
Jonny Leeds comments below that you also can use where git.exe
(except with Powershell, for you need to use where.exe git.exe
, instead of the PowerShell command where
)
If not, don’t forget you can install git wherever you want, with the portable version of msysgit. It is just an archive you unzip in any directory of your choice.
Update 2015: use the portable version of “git-for-windows”, like:
PortableGit-2.4.4.2-3rd-release-candidate-64-bit.7z.exe
Then add to %PATH%:
c:pathtoPortableGit-2.4.4.2-3rd-release-candidate-64-bitcmd
c:pathtoPortableGit-2.4.4.2-3rd-release-candidate-64-bitusrbin
You will not only get git.exe
, but also 200+ executable for Unix commands! No more GnuOnWindows to install.
See more at “Why is it that if you download Git 2.0 from the net, you always get a 1.9.4 installer package?”.
More recently (2017), from Luke McGregor’s answer, for the new GitHub Desktop:
"%LOCALAPPDATA%GitHubDesktopapp-[gfw-version]resourcesappgitcmdgit.exe"
For instance:
%LOCALAPPDATA%GitHubDesktopapp-1.0.1resourcesappgitcmd
answered Aug 13, 2012 at 6:08
VonCVonC
1.2m513 gold badges4330 silver badges5145 bronze badges
9
I’m very surprised to see that no one mentioned using the –exec-path switch.
git –exec-path
C:Program FilesGitmingw64/libexec/git-core
I hope this helps someone.
answered Aug 9, 2017 at 21:07
wjamyerswjamyers
1,0297 silver badges5 bronze badges
6
Just to add to a couple of answers already here:
On Windows, you can use the built in “where” instead of “which” (which is for Linux). So, where git
will tell you the location of git assuming that it is in the system path.
If it is not in the system path, and you want a native (no downloads or installations), reasonable time command to find it, use dir /s git.exe
answered Sep 6, 2013 at 1:17
2
If you use SourceTree, one instance can be found here:
%USERPROFILE%AppDataLocalAtlassianSourceTreegit_localbin
You can also install quickly via chocolatey. choco install git
which will then make it available on your path without any further work on your part.
answered Jun 1, 2015 at 15:10
westonweston
53.9k20 gold badges141 silver badges200 bronze badges
2
Here are step by step instructions for you to find out:
- If you’re using any version of Windows, do
Ctrl - Shift - Esc
of open Task Manager. - Open GitHub, and look into Task Manager.
- There should be something like this:
- Right click the row called
GitHub
, and select “Open file location”. - A window should pop up, showing you where the file is.
There you go!
You can do this with any application, not just GitHub.
answered Dec 23, 2015 at 19:31
3
type in the command line:
where git.exe
answered Jan 23, 2014 at 22:49
Randall FlaggRandall Flagg
4,8049 gold badges33 silver badges45 bronze badges
3
If you can use the git command it should be in your path?
thus this should work asuming linux or linux like os
which git
else also asuming linux like os
cd /
find . -name "*git*"
if on windows tell me what version you are using and I’ll help you. The default path on windows is
C:Program Files (x86)Git
.
The name of the executable is not git.exe
on all systems.
answered Aug 13, 2012 at 5:34
Pablo JomerPablo Jomer
9,70211 gold badges53 silver badges100 bronze badges
2
It seems like git.exe can be found in different places depending on how it was installed, the version, and version of Windows.
I installed Git-2.6.3-64-bit.exe (cleand install; just git, not the Github Desktop client) on Windows 10 Pro N.
This is the default location:
%USERPROFILE%AppDataLocalProgramsGitmingw64bingit.exe
and
%USERPROFILE%AppDataLocalProgramsGitbin
answered Nov 27, 2015 at 10:06
S.NorrbjörkS.Norrbjörk
1512 silver badges5 bronze badges
C:Users<username>AppDataLocalGitHubPortableGit_<random hash>cmdgit.exe
is where my git.exe is located on Windows 10, Git version 2.10.0.0
Edit: With GitHubDesktop, the location changed to this
C:Users<username>AppDataLocalGitHubDesktopapp-1.0.1resourcesappgitcmd
or the easier way
%USERPROFILE%AppDataLocalGitHubDesktopapp-1.0.1resourcesappgitcmd
answered Sep 11, 2016 at 4:37
trevren11trevren11
1921 gold badge4 silver badges10 bronze badges
Install git first to your window from
https://git-scm.com/download/win
Select this path while configuring with git to Android studio
C:Program FilesGitcmdgit.exe
answered Apr 17, 2019 at 7:55
Sometimes it can be at: C:Usersuser-nameAppDataLocalProgramsGitcmd
. Checking your PATH environment variable for USER and for SYSTEM can give you that.
answered Feb 18, 2020 at 16:36
Binyamin RegevBinyamin Regev
9025 gold badges19 silver badges30 bronze badges
1
Well I just searched for git.exe on my Windows.
Many files returned with names like git-something.exe
and git-somethingElse.exe
.
Out of those I could find a file with the exact name git.exe.
I opened the file and could see cmd with various git commands, which made me decide that it’s the correct one.
Pasted the file’s path (below) to PyCharm and it worked.
C:Users*Username*AppDataLocalGitHubPortableGit_cba306e536fdf878271f7fe636a147f7326adcmdgit.exe
PS: I installed Git and GitHub through Windows the GitHub’s Client Installation.
answered Dec 29, 2015 at 13:25
akshaynagpalakshaynagpal
2,83530 silver badges32 bronze badges
Check this path:
C:Program FilesGitmingw64libexecgit-coregit.exe
answered Aug 21, 2019 at 15:02
SorulSorul
3142 silver badges12 bronze badges
In Windows 7 on GitHub 2.5.3.0 I found it in C:Users(user)AppDataLocalGitHubPortableGit_(numbers)mingw32bingit.exe
thanks to dir /s git.exe
answered Dec 5, 2015 at 16:27
Radek ORadek O
4181 gold badge4 silver badges12 bronze badges
Appears to have moved again in the latest version of GH for windows to:
%USERPROFILE%AppDataLocalGitHubDesktopapp-[gfw-version]resourcesappgitcmdgit.exe
Given it now has the version in the folder structure i think it will move every time it auto-updates. This makes it impossible to put into path. I think the best option is to install git separately.
answered Jun 19, 2017 at 6:56
undefinedundefined
33.2k22 gold badges129 silver badges197 bronze badges
In windows 8 I found its path as below:
C:Program Files (x86)Gitbingit.exe
answered Jan 16, 2015 at 12:55
Abdul MajeedAbdul Majeed
2,64122 silver badges26 bronze badges
5
If you’ve got the PowerShell-based git installation, you can use the Get-Command object to find git:
Get-Command git.exe | Select-Object -ExpandProperty Definition
answered Oct 24, 2015 at 18:25
MikeBMikeB
1,40314 silver badges27 bronze badges
On Windows 10:
I installed git from – https://git-for-windows.github.io/.
After installation i found it at C:Program FilesGitbingit.exe
answered Aug 3, 2017 at 5:01
olaguolagu
5775 silver badges10 bronze badges
4
For anyone who might not find the other solutions suitable,
I just today downloaded the newest version and the git.exe was located in
C:Users<user>AppDataLocalGitHubDesktopapp-1.0.10resourcesappgitcmd
answered Dec 9, 2017 at 15:15
1
👋 GitHub Desktop team member here
What is the PATH to git.exe?
The version of Git used in GitHub Desktop (or GitHub for Windows) is not intended to be used directly by users, as the path will changes between updates and it might lack some features you need.
I recommend installing Git for Windows which will be installed at a predictable location under C:Program FilesGitcmdgit.exe
.
answered Feb 13, 2019 at 20:48
Brendan ForsterBrendan Forster
2,4971 gold badge22 silver badges31 bronze badges
If you have msysgit installed, the path would look like c:Program Files (x86)Gitbingit.exe
on a 64-bit system, otherwise just download and install it, PyCharm doesn’t come with Git client.
answered Aug 13, 2012 at 10:14
CrazyCoderCrazyCoder
386k170 gold badges975 silver badges891 bronze badges
3
First ,you should install github in your PC;
Second,you can download the tool ‘Everything’;
Third,open the tool everything ,type git.exe,then you will find the location and copy the location to PyCharm ,and Test,you will see successfully!
answered Sep 1, 2013 at 4:19
0
On windows if you have git installed through cygwin (open up cygwin and type git --version
to check) then the path will most likely be something like C:cygwin64bingit.exe
answered Jun 25, 2015 at 13:18
2016rshah2016rshah
6716 silver badges19 bronze badges
I am working on OSX, and saw this issue. I found xcode disabled git, causing me to agree to the T&Cs again. I fixed by:
- in a terminal window, within my project folder:
git status
- I recieved the following log entry:
Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.
- I ran the following:
sudo git status
- I then agreed to the T&Cs and everything was hunky dory
answered Oct 26, 2015 at 17:44
Nathan TregillusNathan Tregillus
5,9563 gold badges52 silver badges88 bronze badges
1
I found it at
C:Users~AppDataLocalGitHubPortableGit_<some_identifier>mingw32libexecgit-core
pacholik
8,5699 gold badges43 silver badges55 bronze badges
answered Dec 21, 2015 at 14:33
GauthamGautham
7687 silver badges15 bronze badges
If you are using Git For Windows then it is located at
C:Program FilesGitmingw64libexecgit-core
It is nice to have in mind that Git For Windows offers Git CMD, a command prompt with the PATH already set. Git CMD is available as a shortcut in
Start Menu > Programs > Git
among other options.
answered Jul 5, 2016 at 17:45
dpantdpant
1,59717 silver badges30 bronze badges
Using
- Git 2.11.0,
- Windows 10,
- Android studio 2.2
git.exe location:
C:Users<.username>AppDataLocalProgramsGitcmdgit.exe
Suggestion: while Installing, copy the git path
answered Jan 10, 2017 at 10:23
PrabsPrabs
4,8936 gold badges38 silver badges59 bronze badges
After running through this for all answers, did not find path though.
The latest githubdesktop.exe for windows 10 goes into this directory:
C:ProgramData<User>GitHubDesktopapp-1.0.13GitHubDesktop.exe
Dmitriy
5,52512 gold badges25 silver badges38 bronze badges
answered Feb 13, 2018 at 14:12
Try looking in C:Program FilesGitbin
. I have been able to use git.exe
located there to setup my repository with PyCharm.
nowox
25.4k34 gold badges136 silver badges283 bronze badges
answered Feb 26, 2018 at 7:45
0
I downloaded Github for windows and installed it on my computer, which runs windows 7. I tried to open a project with Android Studio but it says “Can’t start Git: git.exe” and “IDE error”.
When I click “Fix it” it shows:
“Cannot run program “git.exe”: CreateProcess error=2, The system
cannot find the file specified”.
So I googled and I tried to find git.exe file in my Github folder.
In my Github folder there is two folders: one is a project shared by my friend and the other one is “Git1”.
In Git1 foler, there are only two files: “.gitattributes” and “.gitignore”
I can’t find “git.exe” file even with the search bar of windows.
How can I fix this error?
Kjartan
18.5k15 gold badges71 silver badges94 bronze badges
asked Sep 27, 2014 at 17:44
2
The git.exe from Github for windows is located in a path like C:Users<username>AppDataLocalGitHubPortableGit_<numbersandletters>bingit.exe
1 You have to replace <username>
and <numbersandletters>
to the actual situation on your system.
In Android Studio you can specify the path to the Git executable at File->Settings...->Version Control->Git->Path to Git executable
. Here you have to include the actual executable name. As an example, in my case the actual path is: C:UsersdennisAppDataLocalGitHubPortableGit_69703d1db91577f4c666e767a6ca5ec50a48d243bingit.exe
Edit: Last git update has put the git.exe file in cmd folder instead of bin . so now the actual path will be as suggested in the comment below by al3xAndr3w.
C:Users<username>AppDataLocalGitHubPortableGit_<numbersandletters>cmdgit.exe
answered Sep 28, 2014 at 18:49
4
run github that you downloaded, click tools and options symbol(top right), click about github for windows and then open the debug log. under DIAGNOSTICS look for Git Executable Exists:
answered Dec 3, 2014 at 13:14
user4320164user4320164
2012 silver badges2 bronze badges
2
I found git here
C:Users<User>AppDataLocalGitHubDesktopapp-0.5.8resourcesappgitcmdgit.exe
You have to write file name (git.exe) in the end of path otherwise it will give an error=5
Or you can check here also.
C:Program FilesGitbingit.exe
answered May 24, 2017 at 15:47
Amit SinghAmit Singh
5595 silver badges6 bronze badges
The last update for “windows git” did move the git.exe file from the /bin folder to the /cmd folder. So, to use git with IDEs such as webStorm or Android Studio you can use the path :
C:Users<user>AppDataLocalGitHubPortableGit_<..numbers..>cmdgit.exe
But if you want to have linux-like commands such as git, ssh, ls, cp under windows powerShell or cmd add to your windows PATH variables :
C:Users<user>AppDataLocalGitHubPortableGit_<…numbers…>usrbin
change <user> and <…numbers…> to your values and reboot!
Also, you will have to update this everytime git updates since it might change the portable folder name. If folder structure changes I will update this post.
Thx @dennisschagt for the comment above! 😉
Mr Lister
45.2k15 gold badges107 silver badges150 bronze badges
answered Dec 3, 2015 at 23:04
drew7721drew7721
1,61218 silver badges20 bronze badges
I faced the same issue and was not able to find it out where git.exe is located. After spending so much time I fount that in my windows 8, it is located at
C:Program Files (x86)Gitbin
And for command line :
C:Program Files (x86)Gitcmd
Hope this helps someone facing the same issue.
answered Aug 2, 2015 at 6:14
SmeetSmeet
4,0171 gold badge35 silver badges47 bronze badges
As of version 2.10.1, here is the path –
C:UsersusersamAppDataLocalProgramsGitcmdgit.exe
answered Oct 19, 2016 at 12:54
1) Install Git for Windows from here: http://git-scm.com/download/win
2) Note: During installation, Make sure “Use Git and optional Unix tools from the windows command prompt” is selected
3) restart the Android Studio and try again
4) Go to File-> New -> Project from version control -> Git
answered Jul 26, 2017 at 5:29
I found my git.exe
here
C:Program FilesGitbingit.exe
while installing git
, it asks for the location. copy it and use it.
answered Feb 10, 2017 at 17:57
PrabsPrabs
4,8936 gold badges38 silver badges59 bronze badges
The path for the latest version of Git is changed, In my laptop, I found it in
C:UsersAnum SherazAppDataLocalProgramsGitbingit.exe
This resolved my issue of path. Hope that helps to someone 🙂
answered Dec 14, 2015 at 16:57
Anum SherazAnum Sheraz
2,2781 gold badge28 silver badges52 bronze badges
У меня есть PyCharm, и я оглядываюсь, пытаясь найти git.exe, чтобы настроить его с помощью моего репо.
Что такое PATH для git.exe?
Ответ 1
Если вы используете GitHub для Windows, git.exe может отсутствовать в вашем PATH, но вы можете найти его в таком месте, как: C:Users<username>AppDataLocalGitHubPortableGit_<numbersandletters>bingit.exe
Это ситуация для меня, в Windows 7 + версия 1.0 GitHub для Windows.
В Windows 10 он выглядит так:
C:Users<username>AppDataLocalGitHubPortableGit_<numbersandletters>cmdgit.exe
(cmd против bin)
Из GitHub Desktop 1.1
Пользовательский интерфейс отличается, и путь Git теперь находится в:
C:Users<username>AppDataLocalGitHubDesktopapp-<appversion>resourcesappgitcmdgit.exe
PS: AppData по умолчанию является скрытой папкой.
Ответ 2
Если git.exe
действительно находится в вашем %PATH%
(то есть, если вы можете ввести git --version
в окнах DOS), то which git.exe
скажет вам, где.
(при условии, что вы установили GoW: Gnu в Windows: 130 команд unix, скомпилированных для Windows, включая which
).
Jonny Leeds комментирует ниже, что вы также можете использовать where git.exe
(кроме Powershell, для которого вам нужно использовать where.exe git.exe
вместо команды PowerShell where
)
Если нет, не забудьте установить git где угодно портативная версия msysgit , Это просто архив, который вы распаковываете в любой каталог по вашему выбору.
Обновление 2015: используйте переносную версию “git-for-windows”, например:
PortableGit-2.4.4.2-3rd-release-candidate-64-bit.7z.exe
Затем добавьте к% PATH%:
-
c:pathtoPortableGit-2.4.4.2-3rd-release-candidate-64-bitcmd
-
c:pathtoPortableGit-2.4.4.2-3rd-release-candidate-64-bitusrbin
Вы получите не только git.exe
, но и исполняемый файл 200+ для команд Unix! Больше не нужно устанавливать GnuOnWindows.
Подробнее см. ” Почему при загрузке Git 2.0 из сети вы всегда получаете установочный пакет 1.9.4? “.
Совсем недавно (2017), от ответа Люка МакГрегора, для нового GitHub Desktop:
"%LOCALAPPDATA%GitHubDesktopapp-[gfw-version]resourcesappgitcmdgit.exe"
For instance:
%LOCALAPPDATA%GitHubDesktopapp-1.0.1resourcesappgitcmd
Ответ 3
Просто добавьте пару ответов уже здесь:
В Windows вы можете использовать встроенный “where” вместо “which” (что для Linux). Таким образом, where git
сообщит вам местоположение git, предполагая, что оно находится в системном пути.
Если он не находится в системном пути, и вы хотите, чтобы для него находилась нативная (без загрузки или установки) разумная команда времени, используйте dir /s git.exe
Ответ 4
Я очень удивлен, увидев, что никто не упоминал об использовании переключателя -exec.
git –exec-path
C:Program Files Gitmingw64/libexec/git -core
Я надеюсь, что это поможет кому-то.
Ответ 5
Если вы используете SourceTree, один экземпляр можно найти здесь:
%USERPROFILE%AppDataLocalAtlassianSourceTreegit_localbin
Вы также можете быстро установить через Chocolatey. choco install git
который затем сделает его доступным на вашем пути без дальнейшей работы с вашей стороны.
Ответ 6
Ниже приведены пошаговые инструкции для вас:
Там вы идете!
Вы можете сделать это с любым приложением, а не только с GitHub.
Ответ 7
введите в командной строке:
where git.exe
Ответ 8
Кажется, что git.exe можно найти в разных местах в зависимости от того, как он был установлен, версии и версии Windows.
Я установил Git -2.6.3-64-bit.exe(очистить установку, просто git, а не клиент Github Desktop) в Windows 10 Pro N.
Это местоположение по умолчанию:
% USERPROFILE%AppDataLocalPrograms Gitmingw64Bingit.exe
и
% USERPROFILE%AppDataLocalPrograms GitBIN
Ответ 9
Если вы можете использовать команду git, она должна быть на вашем пути?
таким образом, это должно работать как linux или linux как os
which git
else также asuming linux как os
cd /
find . -name "*git*"
Если на окнах расскажу, какая версия и неправильная помощь по умолчанию для окон
C:Program Files (x86)Git
для msysgit не уверен, что exeutable имеет имя git.exe.
Ответ 10
C:Users<username>AppDataLocalGitHubPortableGit_<random hash>cmdgit.exe
находится где my git.exe находится в Windows 10, Git версии 2.10.0.0
Изменить: С GitHubDesktop расположение изменилось на
C:Users<username>AppDataLocalGitHubDesktopapp-1.0.1resourcesappgitcmd
или более простой способ
%USERPROFILE%AppDataLocalGitHubDesktopapp-1.0.1resourcesappgitcmd
Ответ 11
Ну, я просто искал git.exe на моей Windows.
Многие файлы возвращаются с именами типа git-something.exe
и git-somethingElse.exe
.
Из них я мог найти файл с точным именем git.exe.
Я открыл файл и увидел cmd с различными командами git, которые заставили меня решить, что это правильный.
Вложил путь к файлу (ниже) в PyCharm, и он сработал.
C:Users*Username*AppDataLocalGitHubPortableGit_cba306e536fdf878271f7fe636a147f7326adcmdgit.exe
PS: я установил git и GitHub через Windows для установки клиента GitHub.
Ответ 12
Появится сообщение о том, что в последней версии GH для окон появилось следующее:
%USERPROFILE%AppDataLocalGitHubDesktopapp-[gfw-version]resourcesappgitcmdgit.exe
Учитывая, что у него теперь есть версия в структуре папок, я думаю, что она будет перемещаться каждый раз, когда она автоматически обновляется. Это делает невозможным путь. Я думаю, что лучший вариант – установить git отдельно.
Ответ 13
В Windows 7 на GitHub 2.5.3.0 я нашел его в C:Users (user)AppDataLocalGitHubPortableGit_ (числа) mingw32bingit.exe
благодаря dir /s git.exe
Ответ 14
В Windows 10:
Я установил git from – https://git-for-windows.github.io/.
После установки я нашел его в C:Program FilesGitbingit.exe
Ответ 15
Для тех, кто может не найти другие подходящие решения,
Я только сегодня скачал самую новую версию и git.exe был расположен в
C:Users<user>AppDataLocalGitHubDesktopapp-1.0.10resourcesappgitcmd
Ответ 16
Install git first to your window from
https://git-scm.com/download/win
Select this path while configuring with git to Android studio
C:Program FilesGitcmdgit.exe
Ответ 17
Если у вас установлена установка git на основе PowerShell, вы можете использовать объект Get-Command для поиска git:
Get-Command git.exe | Select-Object -ExpandProperty Definition
Ответ 18
Если вы установили msysgit, путь будет выглядеть как c:Program Files (x86)Gitbingit.exe
в 64-разрядной системе, иначе просто скачайте и установите он, PyCharm не поставляется с клиентом Git.
Ответ 19
Сначала вы должны установить github на свой компьютер;
Во-вторых, вы можете загрузить инструмент Все;
В-третьих, откройте инструмент все, введите git.exe, затем вы найдете местоположение и скопируйте местоположение в PyCharm и Test, вы увидите успешно!
Ответ 20
В окнах, если у вас есть git, установленный через cygwin (откройте cygwin и введите git --version
, чтобы проверить), то путь, скорее всего, будет похож на C:cygwin64bingit.exe
Ответ 21
Я работаю над OSX и вижу эту проблему. Я обнаружил, что xcode отключен git, заставив меня снова согласиться с T & Cs. Я исправил:
- в окне терминала в моей папке проекта:
git status
- Я получил следующую запись в журнале:
Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.
- Я запустил следующее:
sudo git status
- Тогда я согласился с T & Cs, и все было hunky dory
Ответ 22
Я нашел его на
C:Users~AppDataLocalGitHubPortableGit_<some_identifier>mingw32libexecgit-core
Ответ 23
Если вы используете Git Для Windows, то он находится в
C:Program FilesGitmingw64libexecgit-core
Приятно иметь в виду, что Git Для Windows предлагает Git CMD, команду подскажите с уже установленным PATH. Git CMD доступен в виде ярлыка в
Start Menu > Programs > Git
среди других опций.
Ответ 24
Использование
- Git 2.11.0,
- Windows 10,
- Android studio 2.2
git.exe:
C:Users<.username > AppDataLocalProgramsGitCMDgit.exe
Предложение: при установке, скопируйте путь git
Ответ 25
Пройдя через все ответы, не нашел пути.
Последний githubdesktop.exe для Windows 10 идет в этот каталог:
C:ProgramData<User>GitHubDesktopapp-1.0.13GitHubDesktop.exe
Ответ 26
Попробуйте поискать в C:Program FilesGitbin
. Я был в состоянии использовать git.exe
расположенный там, чтобы настроить мой репозиторий с PyCharm.
Ответ 27
Member Член команды GitHub Desktop здесь
Что такое путь к git.exe?
Версия Git, используемая в GitHub Desktop (или GitHub для Windows), не предназначена для непосредственного использования пользователями, так как путь будет изменяться между обновлениями, и в ней могут отсутствовать некоторые необходимые функции.
Я рекомендую установить Git для Windows, который будет установлен в предсказуемом месте в C:Program FilesGitcmdgit.exe
.
Ответ 28
Проверьте этот путь:
C:Program FilesGitmingw64libexecgit-coregit.exe
Ответ 29
В Windows 8 я нашел его путь, как показано ниже:
C:Program Files (x86) Gitbingit.exe
Ответ 30
Я загрузил заглушку из https://desktop.github.com
После установки git из заглушки, git.exe сохраняется в следующем местоположении.
C:Users**User Name**AppDataLocalGitHubPortableGit_****Some No/characters***cmdgit.exe
В 64-разрядной версии Windows 10 я чувствую, что exe файл теперь хранится в папке cmd, а не в папке bin.
“.Exe” — это исполняемые файлы, которые помогают пользователям устанавливать или запускать программное обеспечение на ПК с Windows. Точно так же несколько программ используют «git.exe” для правильной работы. Разработчики часто сталкиваются с ошибками при запуске программного обеспечения или приложений, если файл git.exe отсутствует. Таким образом, важно сохранить файл git.exe для правильной работы системы.
Этот учебник объяснит:
- Способ 1: как найти расположение файла git.exe с помощью команд?
- Способ 2: как найти местоположение файла git.exe вручную?
Способ 1: как найти местоположение файла git.exe с помощью команд?
Чтобы найти расположение файла git.exe, выполните команду «где git.exe” в терминале. Для этого выполните указанные шаги.
Сначала откройте терминал Git bash и перенаправьте в корневой каталог, используя «CDкоманда:
$ CD“С:Гит”
Затем выполните указанную ниже команду, чтобы найти указанное местоположение файла:
$ где git.exe
В приведенном ниже выводе показаны два места, где находятся файлы git.exe:
Способ 2: как найти местоположение файла git.exe вручную?
Чтобы найти местоположение файла git.exe вручную, следуйте по указанному пути на вашем ПК:
C:Program FilesGitmingw64bin
Другой способ найти расположение файла git.exe — проверить следующий путь:
C:Program FilesGitcmd
Мы объяснили, как найти расположение файлов git.exe.
Заключение
Чтобы найти расположение файлов git.exe, сначала откройте терминал Git bash. Затем перенаправьте в корневой репозиторий и выполните «где git.exeкоманда. Чтобы найти местоположение файла git.exe вручную, следуйте инструкциям «C:Program FilesGitmingw64bin» или «C:Program FilesGitcmd” на вашем ПК. В этом руководстве показано, как найти расположение файлов git.exe с помощью команд и вручную.
У меня есть PyCharm, и я пытаюсь найти git.exe, чтобы настроить его с моим репо.
Что такое путь к git.exe?
Ответы:
Если вы используете GitHub для Windows , git.exe может отсутствовать в вашем PATH, но вы можете найти его в таком месте, как:C:Users<username>AppDataLocalGitHubPortableGit_<numbersandletters>bingit.exe
Это ситуация для меня, в Windows 7 + версия 1.0 GitHub для Windows.
В Windows 10 он выглядит так:
C:Users<username>AppDataLocalGitHubPortableGit_<numbersandletters>cmdgit.exe
( cmd против bin)
Из GitHub Desktop 1.1
Пользовательский интерфейс отличается, и путь Git теперь находится в:
C:Users<username>AppDataLocalGitHubDesktopapp-<appversion>resourcesappgitcmdgit.exe
PS: AppData по умолчанию является скрытой папкой.
Если git.exe
это действительно в вашем %PATH%
(то есть, если вы можете набрать git --version
в окнах DOS), то which git.exe
скажу вам, где.
(при условии, что вы установили GoW: Gnu в Windows : 130 команд unix, скомпилированных для Windows, в том числе which
).
Ниже приведены комментарии Джонни Лидса, которые вы также можете использовать where git.exe
(за исключением PowerShell , если вам нужно использовать where.exe git.exe
вместо команды PowerShellwhere
)
Если нет, не забудьте, что вы можете установить git где угодно портативная версия msysgit, Это просто архив, который вы распаковываете в любой каталог по вашему выбору.
Обновление 2015: используйте переносную версию “git-for-windows” , например:
PortableGit-2.4.4.2-3rd-release-candidate-64-bit.7z.exe
Затем добавьте к% PATH%:
c:pathtoPortableGit-2.4.4.2-3rd-release-candidate-64-bitcmd
c:pathtoPortableGit-2.4.4.2-3rd-release-candidate-64-bitusrbin
Вы получите не только git.exe
200+ исполняемых файлов для команд Unix! Нет больше GnuOnWindows для установки.
Подробнее см. « Почему при загрузке Git 2.0 из сети вы всегда получаете установочный пакет 1.9.4? ».
Совсем недавно (2017), от Луки Макгрегор «S ответ для нового GitHub Desktop :
"%LOCALAPPDATA%GitHubDesktopapp-[gfw-version]resourcesappgitcmdgit.exe"
For instance:
%LOCALAPPDATA%GitHubDesktopapp-1.0.1resourcesappgitcmd
Я очень удивлен, увидев, что никто не упомянул использование ключа –exec-path.
git –exec-путь
C: Program Files Git mingw64 / libexec / git-core
Я надеюсь, что это поможет кому-то.
Просто добавить пару ответов уже здесь:
В Windows вы можете использовать встроенное «где» вместо «который» (который для Linux). Итак, where git
скажу вам местоположение git, предполагая, что он находится в системном пути.
Если его нет в системном пути, и вы хотите использовать нативный (без загрузок и установок), разумное время, чтобы найти его, используйте dir /s git.exe
Если вы используете SourceTree , один экземпляр можно найти здесь:
%USERPROFILE%AppDataLocalAtlassianSourceTreegit_localbin
Вы также можете установить быстро через Chocolatey . choco install git
который затем сделает его доступным на вашем пути без дальнейшей работы с вашей стороны.
Вот пошаговые инструкции для вас, чтобы узнать:
- Если вы используете любую версию Windows,
Ctrl - Shift - Esc
откройте диспетчер задач. - Откройте GitHub и посмотрите в диспетчер задач.
- Там должно быть что-то вроде этого:
- Щелкните правой кнопкой мыши по названной строке
GitHub
и выберите «Открыть местоположение файла». - Должно появиться окно, показывающее, где находится файл.
Вот и вы!
Вы можете сделать это с любым приложением, а не только с GitHub.
введите в командной строке:
where git.exe
Если вы можете использовать команду git, она должна быть на вашем пути? таким образом, это должно работать, принимая Linux или Linux, как ОС
which git
еще также принимая Linux как OS
cd /
find . -name "*git*"
если на windows скажи мне какую версию ты используешь и я тебе помогу. Путь по умолчанию в Windows
C:Program Files (x86)Git
.
Имя исполняемого файла есть не git.exe
во всех системах.
Кажется, что git.exe может быть найден в разных местах в зависимости от того, как он был установлен, версии и версии Windows.
Я установил Git-2.6.3-64-bit.exe (очистить и установить; просто git, а не клиент Github Desktop) в Windows 10 Pro N. Это расположение по умолчанию:
% USERPROFILE% AppData Local Programs Git mingw64 Bin git.exe
и
% USERPROFILE% AppData Local Programs Git Bin
C:Users<username>AppDataLocalGitHubPortableGit_<random hash>cmdgit.exe
где мой git.exe находится в Windows 10, версия Git 2.10.0.0
Изменить: С GitHubDesktop, местоположение изменилось на это
C:Users<username>AppDataLocalGitHubDesktopapp-1.0.1resourcesappgitcmd
или более простой способ
%USERPROFILE%AppDataLocalGitHubDesktopapp-1.0.1resourcesappgitcmd
Ну, я просто искал git.exe на моей Windows.
Многие файлы возвращаются с именами вроде git-something.exe
и git-somethingElse.exe
.
Из них я мог найти файл с точным именем git.exe . Я открыл файл и увидел cmd с различными командами git, что заставило меня решить, что он правильный.
Вставил путь файла (ниже) в PyCharm, и это сработало.
C:Users*Username*AppDataLocalGitHubPortableGit_cba306e536fdf878271f7fe636a147f7326adcmdgit.exe
PS: я установил Git и GitHub через Windows установку клиента GitHub.
Похоже, что в последней версии GH для Windows снова перешли к:
%USERPROFILE%AppDataLocalGitHubDesktopapp-[gfw-version]resourcesappgitcmdgit.exe
Учитывая, что теперь он имеет версию в структуре папок, я думаю, что он будет перемещаться каждый раз, когда он автоматически обновляется. Это делает невозможным положить в путь. Я думаю, что лучший вариант – установить git отдельно.
Install git first to your window from
https://git-scm.com/download/win
Select this path while configuring with git to Android studio
C:Program FilesGitcmdgit.exe
Если вы установили git на основе PowerShell, вы можете использовать объект Get-Command для поиска git:
Get-Command git.exe | Select-Object -ExpandProperty Definition
В Windows 7 на GitHub 2.5.3.0 я нашел его в C: Users (пользователь) AppData Local GitHub PortableGit_ (numbers) mingw32 bin git.exe
благодаря dir /s git.exe
Для тех, кто может не найти другие подходящие решения,
Я только сегодня скачал самую новую версию и git.exe был расположен в
C:Users<user>AppDataLocalGitHubDesktopapp-1.0.10resourcesappgitcmd
Проверьте этот путь:
C:Program FilesGitmingw64libexecgit-coregit.exe
Если у вас установлен msysgit , путь будет выглядеть c:Program Files (x86)Gitbingit.exe
в 64-битной системе, в противном случае просто скачайте и установите его, PyCharm не поставляется с Git-клиентом.
Team Член команды GitHub Desktop здесь
Что такое путь к git.exe?
Версия Git, используемая в GitHub Desktop (или GitHub для Windows), не предназначена для непосредственного использования пользователями, так как путь будет изменяться между обновлениями, и в ней могут отсутствовать некоторые необходимые функции.
Я рекомендую установить Git для Windows, который будет установлен в предсказуемом месте C:Program FilesGitcmdgit.exe
.
Во-первых, вы должны установить GitHub на свой компьютер; Во-вторых, вы можете скачать инструмент « Все »; В-третьих, откройте инструмент все, введите git.exe , затем вы найдете местоположение и скопируйте его в PyCharm, и Test, вы увидите успешно!
В Windows 8 я нашел его путь, как показано ниже:
C: Program Files (x86) Git bin git.exe
В Windows, если у вас установлен git через cygwin (откройте cygwin и напечатайте git --version
для проверки), скорее всего путь будет примерно таким:C:cygwin64bingit.exe
Я работаю над OSX, и увидел эту проблему. Я обнаружил, что gcode отключен, и я снова согласился с Условиями. Я исправил:
- в окне терминала, в папке моего проекта:
git status
- Я получил следующую запись в журнале:
Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.
- Я запустил следующее:
sudo git status
- Затем я согласился с T & C, и все было в порядке
Я нашел это в
C:Users~AppDataLocalGitHubPortableGit_<some_identifier>mingw32libexecgit-core
Если вы используете Git For Windows, он находится по адресу
C:Program FilesGitmingw64libexecgit-core
Приятно иметь в виду, что Git For Windows предлагает Git CMD , командную строку с уже установленной переменной PATH. Git CMD доступен как ярлык в
Start Menu > Programs > Git
среди других вариантов.
С помощью
- Git 2.11.0,
- Windows 10,
- Android студия 2.2
Расположение git.exe:
C: Users AppData Local Programs Git CMD git.exe <имя пользователя.>
Предложение: при установке скопируйте путь git
Пройдя через все ответы, не нашел пути.
Последний githubdesktop.exe для Windows 10 идет в этот каталог:
C:ProgramData<User>GitHubDesktopapp-1.0.13GitHubDesktop.exe
Попробуйте заглянуть внутрь C:Program FilesGitbin
. Я был в состоянии использовать git.exe
расположенный там для настройки моего хранилища с PyCharm.
Иногда это может быть: C:Usersuser-nameAppDataLocalProgramsGitcmd
. Проверка переменной среды PATH для USER и SYSTEM может дать вам это.