Here are some brief notes related to handling some comments on a Github pull request. Every other pull request I’ve done has been simply accepted, but I’m currently working through a conversation related to a large pull request. Here are the notes:
git fetch
wasn’t showing the comments/changes I just approved on Github, but this set of commands successfully pulled those changes from Github and brought them onto my system:
git branch #to list the branches git checkout my-branch-name #switch to my branch git pull origin my-branch-name
This worked easily because I hadn’t made any changes to my local branch. This page describes git pull
like this:
“When downloading content from a remote repo, git pull
and git fetch
commands are available to accomplish the task. You can consider git fetch
the ‘safe’ version of the two commands. It will download the remote content but not update your local repo’s working state, leaving your current work intact. git pull
is the more aggressive alternative, it will download the remote content for the active local branch and immediately execute git merge
to create a merge commit for the new remote content. If you have pending changes in progress this will cause conflicts and kickoff the merge conflict resolution flow.”