How to get Latest changes from the Remote(upstream) Branch(dev) - shivangg/batch5-pacman GitHub Wiki
To get the latest changes from a remote(upstream) branch(dev) and add them to your branch.
git fetch upstream dev
git rebase upstream/dev
git push