Trabla: Git & GitLab: error: pathspec 'commit'' did not match any file(s) known to git.
Trabla Description:
This example is shown in GitLab
Commit command
git commit -m 'first commit'But execution in Windows Command Line show error
error: pathspec 'commit'' did not match any file(s) known to git.
Solving:
Trabla in single quotes
git commit -m 'first commit'Use double quotes :
git commit -m "first commit"
No comments:
Post a Comment