[PATCH 0/1] MR11036: Add .DS_Store file to gitignore
The .DS_Store file is a file that gets used by MacOS's finder application for storing internal configuration data. There's no reason for that file to be part of the git tree. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/11036
From: Tobias Markus <tobbi.bugs@googlemail.com> --- tools/makedep.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/makedep.c b/tools/makedep.c index 90a522640fe..bc5dcb82acc 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -4571,6 +4571,9 @@ static void output_gitignore( const char *dest, struct strarray files ) output( "%s\n", file ); } + // Add Mac-specific files to .gitignore: + output(".DS_Store\n"); + if (fclose( output_file )) fatal_perror( "write" ); output_file = NULL; rename_temp_file( dest ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/11036
It's not generated by the build process, so it doesn't belong here. You should add it to your global gitignore file. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/11036#note_141822
This merge request was closed by Alexandre Julliard. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/11036
participants (3)
-
Alexandre Julliard (@julliard) -
tobbi (@tobbi) -
Tobias Markus