Using git pull used to retrieve from remote storage, as expected, now it asks me to use git pull origin master . I do not quite understand the instructions that he gives me, saying that I can add something to my configuration file:
[branch "master"] remote = <nickname> merge = <remote-ref> [remote "<nickname>"] url = <url> fetch = <refspec>
Now my configuration file looks like
[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true [remote "origin"] url = |redacted| fetch = +refs/heads/*:refs/remotes/origin/*
So, I guess I need to add
[branch "master"] remote = origin merge = ??
What is a merge as an argument? What is remote-ref (erence?)? I tried looking at http://git-scm.com/docs/git-config , but it seems to be more about the team itself.
Thanks in advance!
git
munchybunch Nov 28 '10 at 16:35 2010-11-28 16:35
source share