Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.4k points)

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?

1 Answer

0 votes
by (41.4k points)
edited by

If you can use the git command it should be in your path? thus this should work assuming Linux or Linux like os

which git

else also assuming Linux like os

cd /

find . -name "*git*"

If on windows, the default path is C:\Program Files (x86)\Git. The name of the executable is not git.exe for all systems.

Check out this Git Tutorial to know more.

Browse Categories

...