Re: [PATCH] git: show hidden tracked files

2024-11-11 Thread Thomas Monjalon
17/10/2024 18:26, Stephen Hemminger: > On Thu, 17 Oct 2024 17:15:03 +0200 > Thomas Monjalon wrote: > > > The hidden files are not considered because of the first rule in > > .gitignore file. > > > > In order to see changes in the hidden tracked files, > > they are added in .gitignore as explicit

Re: [PATCH] git: show hidden tracked files

2024-10-17 Thread Stephen Hemminger
On Thu, 17 Oct 2024 17:15:03 +0200 Thomas Monjalon wrote: > The hidden files are not considered because of the first rule in > .gitignore file. > > In order to see changes in the hidden tracked files, > they are added in .gitignore as explicit include rules. > > The derivatives of the first lev

[PATCH] git: show hidden tracked files

2024-10-17 Thread Thomas Monjalon
The hidden files are not considered because of the first rule in .gitignore file. In order to see changes in the hidden tracked files, they are added in .gitignore as explicit include rules. The derivatives of the first level files are also shown. Example: .mailmap.rej Signed-off-by: Thomas Monj