Reputation: 12053
It is possible to run GIT bash console starting in current folder in Explorer or TotalCommander? I use Win 10.
For example: I use TotalCommander or standard WinExplorer, I'm in path c:\src\MyProjekt (there is git repo), I press specified key combination and I can type git command.
Upvotes: 5
Views: 3600
Reputation: 21
It worked for me without adding --login after the path, as the application (git-bash.exe) already adds it:
Upvotes: 0
Reputation: 11232
Something like that works for me for Total Commander (but it's not perfect):
Add new item with name like Git Bash as:
a) command: c:\Program Files\Git\bin\bash.exe --login
b) shortcut key: ctrl+alt+f1
(to choose from list).
Since now pressing ctrl+alt+f1
should run Git Bash in current folder.
Another option (which I usually use) is to run this from Context menu:
This should work also for Windows Explorer and anything else. It's not a shortcut, but still a keyboard.
Upvotes: 13