Skip to content

Instantly share code, notes, and snippets.

View patrickkabwe's full-sized avatar
🎰
Learning Machine Learning(AI)

Patrick Kabwe patrickkabwe

🎰
Learning Machine Learning(AI)
View GitHub Profile
@lpheller
lpheller / tldr-global-gitignore-ds-store.sh
Created November 11, 2020 08:51
Globally ignore .DS_Store files
# Quick and easy one line command to setup a global .gitignore file and ignore macOS .DS_store files globally
git config --global core.excludesfile "~/.gitignore" && echo .DS_Store >> ~/.gitignore