Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1.  
  2. warning: push.default is unset; its implicit value is changing in
  3. Git 2.0 from 'matching' to 'simple'. To squelch this message
  4. and maintain the current behavior after the default changes, use:
  5.  
  6. git config --global push.default matching
  7.  
  8. To squelch this message and adopt the new behavior now, use:
  9.  
  10. git config --global push.default simple
  11.  
  12. When push.default is set to 'matching', git will push local branches
  13. to the remote branches that already exist with the same name.
  14.  
  15. In Git 2.0, Git will default to the more conservative 'simple'
  16. behavior, which only pushes the current branch to the corresponding
  17. remote branch that 'git pull' uses to update the current branch.
  18.  
  19. See 'git help config' and search for 'push.default' for further information.
  20. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
  21. 'current' instead of 'simple' if you sometimes use older versions of Git)
  22.  
  23. fatal: 'Bug27672' does not appear to be a git repository
  24. fatal: Could not read from remote repository.
  25.  
  26. Please make sure you have the correct access rights
  27. and the repository exists.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement