what command do you use to pull any changes from the master repository into your local repository?
git fetch <remote> <branch>
what command do you use to pull any changes from the master repository into your local repository?
git fetch <remote> <branch>
pull from master to local
git checkout my_branch # move on your branch (make sure it exists)
git fetch origin # fetch all changes
git pull origin master # pull changes from the origin remote, master branch and merge them into my_branch
git push origin my_branch # push my_branch
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us