79693973

Date: 2025-07-08 09:20:33
Score: 1.5
Natty:
Report link

The command `git stash --include-untracked` includes changes to untracked files in the stash, but it does not include files or directories that are ignored by `.gitignore`.

Those "ignored paths" messages simply indicate that Git is aware of their existence but skipped them due to ignore rules.

If you want to stash only the changes made to tracked files, use `git stash` without any additional flags.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: su rui