7/8 Stucked at 2nd step in this

$ git cd my-quizzes
git: ‘cd’ is not a git command. See ‘git --help’.

Did you mean this?
add
$ cd my quizzes
bash: cd: my: No such file or directory

Take a moment to consider the feedback you’re given by git and bash. They are telling you what you tried to do and why that isn’t possible, with that information, what is it that you need to adjust so that it matches what you are trying to do?

$ cd my quizzes 
bash: cd: my: No such file or directory

See how it says that there is no directory named “my” to move to? Was that the directory you wanted to go to? No, so, the adjustment to make is in giving the full name to “cd” so that it is looking for the name you intend for it to look at.

1 Like