I’m at this step in the subject tutorial:
And the changes from the reset are back in the working tree. So when you reset to one commit before HEAD , it removed the most recent commit, and put all the changes in the working tree. If you used the --hard flag with the reset, the changes would have not been added to the working tree and if you used the --soft flag, the changes would have been added to the working tree and to staging. Add the changes back to staging so you can commit them again.
And here’s my status:
camper: /sql_reference$ git status
bash: /workspace/project/.freeCodeCamp/test/.next_command: No such file or directory
On branch feat/add-column-references
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: sql_reference.json
Untracked files:
(use "git add <file>..." to include in what will be committed)
reference_backup.json
bash: /workspace/project/.freeCodeCamp/test/.cwd: No such file or directory
So the file it’s looking for being in staged status is there, but when I click the ‘run’ button, I get “Test Runner Failed.”
I’ve stopped and restarted the codespace with no effect. Is there something else I can try to get past this step?