How would I change to the directory C:/Users/myname/project name in Git Bash?
C:/Users/myname/project name
If the you know how many levels up from your current working directory, you could use cd ../project/name to avoid writing the entire directory path.
cd ../project/name
The .. represents moving 1 directory up.
..