Commands

Remove file from git tracking list

git rm --cached <file>

Git stash one particular file

git stash push -m "message" <file>

Git stage only those files which are tracked.

git add -u 

Git merge/rebase with strategy

I branched off the wrong branch in Git. How do I fix this?

https://luisdalmolin.dev/blog/branched-off-the-wrong-branch-in-git/

git rebase --onto feature/XX-2 feature/XX-1 feature/XX-2-bkp

git submodule If you run this once, it ensures that when you pull you also get updates to any submodules in a repo:

git config --global submodule.recurse true

git pull even when you have made changes locally.

git config --global pull.rebase true

git config --global rebase.autoStash true