git track working tree code example
Example 1: git worktree
git worktree add <path> <branch>
Example 2: how to avoid some files changes to not come in git status
git update-index --assume-unchanged <file>
git worktree add <path> <branch>
git update-index --assume-unchanged <file>