Error message:
You asked me to pull without telling me which branch you
Want to merge with, and 'Branch. v1.0.merge' in
Your configuration file does not tell me, either. Please
Specify which branch you want to use on the command line and
Try again (e.g. 'git pull ').
See Git-pull (1) for details.
If you often merge with the same branch, you may want
Use something like the following in your configuration file:
[branch "v1.0.0"]
remote = <nickname>
merge = <remote-ref>
[remote "<nickname>"]
url = <url>
fetch = <refspec>
See Git-config (1) for details.
Solution
Modify the. Git/config file
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:datawarehouse.git
[branch "master"]
remote = origin
merge = refs/heads/master
[user]
email = [email protected]
name = wujuan
[branch "v1.0.0"]
remote = origin
merge = refs/heads/v1.0.0
Errors and solutions may be reported after git adds a new branch