出錯:The current branch is not configured for pull No value for key branch.master.merge found in configuration
解決:
To fix this problem in Eclipse, open the Windows menu and select Show View / Other / Git Repositories.
From the Git Repositories tab:
- expand your local repository (注 :這個就是在那個tab裡的根目錄)
- right click on Remote
- click on Create Remote...
- Remote name = origin
- next to IRI press the Change button
- CTRL+SPACE on URI
- select the remote location
- press Finish
- press Save and Push
Again, from the Git Repositories tab:
- right click on origin
- select Configure Fetch...
- on Ref mapping press the Edit (Advanced)...
- press Add All Branches Spec
- select the Force Update checkbox
- press Finish
Again, from the Git Repositories tab:
- right click on your local repository
- select Properties
- press New Entry...
- enter the following two keys:
(1)
Key = branch.master.remoteValue = origin
(2)
Key = branch.master.mergeValue = refs/heads/master
http://stackoverflow.com/questions/8820668/the-current-branch-is-not-configured-for-pull-no-value-for-key-branch-master-mer/15277441#15277441