Message ID | 20241223130856.74283-1-sergiolindo.empresa@gmail.com |
---|---|
State | Rejected |
Headers | show |
Series | [1/1] .gitignore: ignore vscode and mac finder files | expand |
Hi Sergio, Thank you for your patch! On 23/12/2024 14:08, Sergio Lindo Mansilla wrote: > This helps having a cleaner git status/diff list when developing on MacOS. > > Signed-off-by: Sergio Lindo Mansilla <sergiolindo.empresa@gmail.com> > --- > .gitignore | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/.gitignore b/.gitignore > index ec5768d053..f023d4769f 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -13,3 +13,5 @@ > *.rej > *~ > *.pyc > +.DS_Store > +.vscode These files are not files that are created by Buildroot, but files that are created by your local environment. Therefore, the proper place to ignore them is not in the project's gitignore, but rather in the user's ignore file (normally ~/.config/git/ignore). Cfr. the gitignore man page [1] Therefore, I've marked this patch as Rejected in patchwork. Still, thank you for your contribution! Regards, Arnout [1] https://git-scm.com/docs/gitignore
diff --git a/.gitignore b/.gitignore index ec5768d053..f023d4769f 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,5 @@ *.rej *~ *.pyc +.DS_Store +.vscode
This helps having a cleaner git status/diff list when developing on MacOS. Signed-off-by: Sergio Lindo Mansilla <sergiolindo.empresa@gmail.com> --- .gitignore | 2 ++ 1 file changed, 2 insertions(+)