What changes will be made if below line is set?
git config remote.unfuddle.push refs/heads/master:refs/heads/master
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It will configure your current repository (use the
--globalswitch to perform the config for your current user account). It tells git, that for the remoteunfuddleit should only push themasterbranch.So
git push unfuddlewill only pushmasterto the remote repository, even though other branches may exist and might have been updated (and thus pushed with the default configuration)