I submitted a PR and a commit was added to that branch is I pushed.
Please how can I get the new commit to show in the branch on my machine.
I submitted a PR and a commit was added to that branch is I pushed.
Please how can I get the new commit to show in the branch on my machine.
You can use git fetch
described in the doc here. But be aware that doing so will cause the head to detach.
This post explains how to reconcile a detached head if required.