diff options
Diffstat (limited to 'git')
| -rw-r--r-- | git/.gitconfig | 1 | ||||
| -rw-r--r-- | git/.gitignore_global | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/git/.gitconfig b/git/.gitconfig index 2792bce..ea494ad 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -4,6 +4,7 @@ email = [email protected] signingkey = [email protected] [core] + excludesfile = ~/.gitignore_global editor = emacs autocrlf = input untrackedCache = true diff --git a/git/.gitignore_global b/git/.gitignore_global new file mode 100644 index 0000000..5abac3e --- /dev/null +++ b/git/.gitignore_global @@ -0,0 +1,29 @@ +# macOS +.DS_Store +.AppleDouble +.LSOverride + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Editors +*.swp +*.swo +*~ +.vscode/ +.idea/ + +# Common logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* |
