I have common github repo with others. Someone implemented a code in his branch named refactor/changes
and pushed it into our common repo without opening pull request.
I access it through this code shown below
git branches -a
git checkout -b refactor/changes remotes/origin/refactor/changes
Someone also added some codes in the repo and pushed it again.
How can I get the last changes from remotes/origin/refactor/changes to my local branch named refactor/changes ?