I am using Git Bash and am trying a few things like making a ‘commit’ and ‘push’ to GitHub.
I want to get out of the current directory C:\user\myUsername\app and land in the C:\user\myUsername folder.
What commands do I write in Git Bash?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To change your directory in git-bash to that specific path you can use this command :
basically you have to replace backslash with standard slash, or otherwise if you simply want to go to the parent directory you can use :
as stated in comments that you already received on your question …