I have a question regarding git repository management.
Lets say I want to create a new branch from 'develop' for a patch. Easy enough:
sudo git checkout develop && sudo git checkout -b test-patch
I also want collaboration, so I am going to push that branch to our remote:
sudo git push -u origin test-patch
Now, I want to pull in changes because another developer has finished a piece of the patch:
sudo git pull origin test-patch
So, here is my question...
EDIT
Now that I understand that origin refers to the repository that the branch hails from,
does sudo git pull origin test-patch get any changes from the remote copy of the 'test-patch' branch and apply those changes to the local copy (excluding the possibility of conflicts)?
sudoon git. There isn't really any reason you should be running those commands as root. – David Zaslavsky Jan 3 at 19:05git push origin test fatal: unable to connect to cache daemon: Permission denied Username for 'https://github.com':– Andrew Rhyne Jan 3 at 19:14