📜 ⬆️ ⬇️

Git 2.0.0



The long-awaited release, containing quite a lot of updates, innovations and bugfixes.

One of the most important changes is the behavior of the git push command. Now by default (if the branch is not specified) push will be implemented only in the current branch. Git 1. * by default did push to all branches which were changed locally. Of course, you can return to the previous behavior, for this is the option push.default .
')
Git behavior 1. *:
 git config --global push.default matching 

New default behavior in Git 2.0:
 git config --global push.default simple 

Other changes:

Source: https://habr.com/ru/post/225251/


All Articles