Git Branching Model https://nvie.com/posts/a-successful-git-branching-model/ (Archive)
git checkout -b myfeature develop
git checkout TARGET
git merge --no-ff SOURCE
git branch -d SOURCE
git push origin TARGET
Revert untracked changes: https://koukia.ca/how-to-remove-local-untracked-files-from-the-current-git-branch-571c6ce9b6b1 (Archive)
git clean -fdx
(force, directory, ignored)