I am very new to Git; I only recently created a GitHub account.
I've just tried to push my very first repository (a sample project), but I'm getting the following error:
No such remote 'origin'
I ran the following commands:
git init
git commit -m "first commit"
git remote add origin https://github.com/VijayNew/NewExample.git
git push -u origin master
However, when I ran git commit -m "first commit", I got the following message:
nothing added to commit but untracked files present (use "git add" to track)
So then I tred to set origin
, using
git remote set-url origin https://github.com/VijayNew/NewExample.git
But I got the following error:
No such remote 'origin'
What did I do wrong, and what should I do?
I faced this issue when I was tring to link a locally created repo with a blank repo on github. Initially I was trying
git remote set-url
but I had to dogit remote add
instead.I'm guessing you didn't run this command after the commit failed so just actually run this to create the remote :
And the commit failed because you need to
git add
some files you want to track.Two problems:
1 - You never told Git to start tracking any file
You write that you ran
and that, at that stage, you got
Git is telling you that you never told it to start tracking any files in the first place, and it has nothing to take a snapshot of. Therefore, Git creates no commit. Before attempting to commit, you should tell Git (for instance):
For that you need to stage the files of interest, using
before running
2 - You haven't set up the remote repository
You then ran
After that, your local repository should be able to communicate with the remote repository that resides at the specified URL (https://github.com/VijayNew/NewExample.git)... provided that remote repo actually exists! However, it seems that you never created that remote repo on GitHub in the first place: at the time of writing this answer, if I try to visit the correponding URL, I get
Before attempting to push to that remote repository, you need to make sure that the latter actually exists. So go to GitHub and create the remote repo in question. Then and only then will you be able to successfully push with