My friend and I have been working on the same branch. He has committed his changes to our branch, and now I want to do the same.
I already did a local git commit, but I’m not sure what are the steps from this point forward?
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.
You will want to get your branch up-to-date so that you can push your changes.
First you will do:
You can also just do
git pullthis will cause a merge commit to occur.Then all you should need to do is:
And the changes should be on the shared remote branch.