Git Quick Tip: Using a Global Gitignore
Did you know Git supports a global .gitignore file that can be used across all of your local repositories? Getting Started To get started, let's create a file named ignore in the ~/.config/git folder. You may need to create this folder if it does not already exist. mkdir -p ~/.config/git && touch ~/.config/git/ignore In the file, we can add some...