Reputation: 77
I have 2 computers. PC1 has some code that I uploaded to github following this tutorial http://kbroman.org/github_tutorial/pages/init.html
git init
git add
git commit
git remote add origin <url>
git push -u origin master
Now I have another PC that I will use to work on the same project and I am stuck trying to link them to the same repository. fetching or pulling however seems to do nothing. My folder (local repository) is still empty. This is what I have done so far
git init
git remote add origin <same url>
git pull
I was wondering if anyone can help me with a few simple lines for this. I am new to git and the things i google online seem highly complicated.
Upvotes: 1
Views: 27
Reputation: 29316
You have to do:
git pull origin master
As you did not setup master
as your upstream
branch.
Alternatively you can update the GIT
repository using git-fetch
and --track
origin/master
, as:
git init
git remote add origin <same url>
git fetch -all
git checkout --track origin/master
Following which you can simply run git pull
to update local repo from remote.
Upvotes: 2