diff options
author | Benjamin Morrison <ben@gbmor.dev> | 2020-11-15 17:35:07 -0500 |
---|---|---|
committer | Benjamin Morrison <ben@gbmor.dev> | 2020-11-15 17:35:07 -0500 |
commit | 0105fe48fcbc8761d9f4137e60acf17164a914a3 (patch) | |
tree | b637cc165f4684c4f82f6b9015b21d8bf097cf96 | |
parent | e568d9c2dd3ceaec0749ae5234db6d73501f3a7b (diff) | |
download | dogfiles-0105fe48fcbc8761d9f4137e60acf17164a914a3.tar.gz |
added global ignore file for git
-rw-r--r-- | .config/git/config | 5 | ||||
-rw-r--r-- | .gitignore | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.config/git/config b/.config/git/config index ebc7e78..0f93408 100644 --- a/.config/git/config +++ b/.config/git/config @@ -9,7 +9,7 @@ email = ben@gbmor.dev signingkey = EAB272409CD12FF0 [init] - templatedir = /home/deofol/.config/git/template.git + templatedir = ~/.config/git/template.git [commit] gpgsign = true [hub] @@ -21,4 +21,5 @@ [pull] rebase = false [core] - attributesFile = /home/deofol/.gitattributes + attributesFile = ~/.gitattributes + excludesFile = ~/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..485dee6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea |