# GIT ## Worktree ```bash git worktree ``` ## Blame ```bash git blame ``` ## Ours strategy ```bash git merge -s ours ``` ## Empty branch ```bash git switch --orphan ``` ## From srpm to gear migration hack ```bash git merge --no-commit --allow-unrelated-histories -s ours git read-tree -u --reset git checkout @ -- .gear package.spec git commit -a ``` ## Chunked add ```bash git add -p ``` ## See only my commits ```bash git log --first-parent ```