how to stash a commit and add the commit to different branch code example
Example 1: git stas hauntracked files
git stash --include-untracked
Example 2: git save to stash
git stash save "name to describe stashed content"
git stash --include-untracked
git stash save "name to describe stashed content"