If .DS_Store was never added to your git repository, simply add it to your .gitignore file.
.gitignore
In your the root directory of your app and simply write
| # git | |
| Set-Alias -Name g -Value git -Option ReadOnly | |
| Function Git-Status { git status $args } | |
| Set-Alias -Name gs -Value Git-Status -Option ReadOnly | |
| Function Git-Commit { | |
| git add . | |
| git commit -m $args | |
| } |
| #!/bin/sh | |
| # | |
| # Generate a full package xml using the Salesforce CLI | |
| # Requirements : | |
| # * Salesforce CLI | |
| # * jq | |