how to go back one directory in git bash

Solutions on MaxInterview for how to go back one directory in git bash by the best coders in the world

showing results for - "how to go back one directory in git bash"
Roberta
27 Aug 2019
1To navigate to your home directory, use "cd" or "cd ~"
2To navigate up one directory level, use "cd .."
3To navigate to the previous directory (or back), use "cd -"
4To navigate into the root directory, use "cd /"