Answers for "how to go to a directory in git bash"

2

how to go to a folder in git bash

cd  /c/project/
Use the pwd command to see which path you are currently in
Posted by: Guest on October-14-2021
0

how to go to home directory in git bash

“how to go back one directory in git bash” Code Answer's
To navigate to your home directory, use "cd" or "cd ~"
To navigate up one directory level, use "cd .."
To navigate to the previous directory (or back), use "cd -"
To navigate into the root directory, use "cd /"
Posted by: Guest on May-21-2021

Code answers related to "how to go to a directory in git bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language