On Wed, Oct 14, 2020 at 04:06:40PM +0800, Wei Jihui wrote:
git status just show new directory, find all files in directory like $LKP_SRC/pkg/$program/
how about this option?
man git status
-u[<mode>], --untracked-files[=<mode>] Show untracked files.
The mode parameter is used to specify the handling of untracked files. It is optional: it defaults to all, and if specified, it must be stuck to the option (e.g. -uno, but not -u no).
The possible options are:
• no - Show no untracked files. • normal - Shows untracked files and directories. ==> • all - Also shows individual files in untracked directories.
Thanks, Fengguang