Why does Git tell me “No such remote ‘origin'” when I try to push to origin?
Two problems: 1 – You never told Git to start tracking any file You write that you ran git init git commit -m “first commit” and that, at that stage, you got nothing added to commit but untracked files present (use “git add” to track). Git is telling you that you never told it to … Read more