Skip to content
This repository was archived by the owner on Feb 9, 2025. It is now read-only.

GitCheatSheet

Jakob Flierl edited this page Apr 26, 2016 · 1 revision

qit pull with with stash and rebase: quickly merge changes from the origin

To pull with rebase the latest changes from the origin, run:

git stash && git pull --rebase && git stash pop && make clean && qmake && make -j5 all
Clone this wiki locally