Hi, I am used to pull from a git repository of someone. Today he moved his repository to another address. I wonder if there is some way for me to pull from the new address and to get the info of what changes he made with respect to last time before his moving?
What I have done is "git clone newaddress" under my repository pulled from his old one. The output is like:
got xxx
walk xxx
got xxx
got xxx
walk xxx
Getting alternates list for newaddress
Getting pack list for newaddress
Getting index for pack xxx
Getting pack xxx
which contains xxx
got xxx
got xxx
walk xxx
...
Then I "git pull" and got the following message which I don't understand:
You asked me to pull without telling me which branch you want to merge with, and 'branch.master.merge' in your configuration file does not tell me either. Please name which branch you want to merge on the command line and try again (e.g. 'git pull '). See git-pull(1) for details on the refspec.
If you often merge with the same branch, you may want to configure the following variables in your configuration file:
branch.master.remote = <nickname> branch.master.merge = <remote-ref> remote.<nickname>.url = <url> remote.<nickname>.fetch = <refspec>
See git-config(1) for details.
What can I do now to still be able to get the info of what changes he made with respect to last time before his moving?
Thanks and regards!