Reputation: 393
I have installed latest Git (Git-1.9.5-preview20150319) from admin account on Windows 7. Git has integrated with Windows Explorer (Git Init Here, Git Gui, Git Bash in the pop-up menu) on admin account.
On the user account Git Bash and Git Gui work, but they are not integrated with Windows Explorer. How can i achieve it?
Upvotes: 0
Views: 21028
Reputation: 916
Try this,
Uninstall your current Git from Windows.
Go to GIT download page -> Download Will Start Automatically
If you don’t want to go through the above clicks, here is the direct url to the download page on msysgit page.
Click on the downloaded executable to start the install process. Accept all the default options during installation as shown below.
The installation wizard will walk you through the following 10 screens:
1) Welcome Screen
2) Read the license
3) Select Destination folder: By default this will be installed under “C:\Program Files\Git”
4) Select Components: This lets you choose which components of git you like to install. Use the default selections.
5) Select Start Menu Folder
6) Adjusting your PATH environment: Use the default selection “Use Git Bash Only”.
[Note] - In Your case use Run git from Windows Command Prompt.
7) Choosing the SSH executable: Use the default selection “Use OpenSSH”.
8) Configuring the line ending conversions: This indicates how Git will treat the line ending in the text files. If you are planning to checkout files from a remote Git repository that is running on Linux, use the default selection “Checkout Windows-style, commit Unix-style line endings”.
9) Installing: This will show the progress bar indicating the installation progress.
10) Completing the Git setup wizard: Click on finish to exist the setup.
Let me know if this helps.
Thanks.
Upvotes: 6