Answers for "how to cd to previous directory"

9

command prompt cd back

cd ..       -> To go back one level
cd ....    -> To go back two levels
Posted by: Guest on July-06-2020
6

how to step back in the path in temrinal

cd ~ or cd -
Posted by: Guest on March-04-2020
2

how to go back one directory in git bash

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 August-26-2020
3

linux command to go to the previous directory

cd -   #go to the previous directory
Posted by: Guest on December-01-2020

Code answers related to "how to cd to previous directory"

Code answers related to "Javascript"

Browse Popular Code Answers by Language