What does the git remote.unfuddle.push option do?

What changes will be made if the bottom line is set?

git config remote.unfuddle.push refs/heads/master:refs/heads/master

+6
source share
1 answer

It will configure your current repository (use the --global switch to configure for the current user account). It tells git that for a remote unfuddle it should only push the master branch.

So git push unfuddle will only push master to the remote repository, even if other branches may exist and may have been updated (and thus pushed with the default setting)

+4
source

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


All Articles