Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Windows 7 Git Bash, is there a way to explore the directory at the current location?

I would like to explore the folder in the Windows Explorer from the shell. I know a lot of people have been asking to Cmd here from a folder.

I'd like to do just the opposite and open a new window located at the current directory being browsed.

like image 294
Greg K. Avatar asked Oct 23 '11 10:10

Greg K.


People also ask

How do I open the current directory in git bash?

Changing the directory through opening it in the same folder is quite straightforward. For this, go to the directory to which you want to change the directory in a normal way you explore your system. After this, right click anywhere in the directory => Open Git Bash here.

What is my current working directory git bash?

Before changing the directory, you need to know your current working directory. To do this, you use the pwd command. This command stands for print working directory.

How do I see my path in git?

Git executable can be found by using running git --exec-path, which usually lives in the Git execution path. git --exec-path will give you the path.


1 Answers

To open Windows Explorer at the current folder, just enter:

explorer . 
like image 81
Piotr Perak Avatar answered Sep 23 '22 17:09

Piotr Perak