diff options
| -rw-r--r-- | git/.gitconfig | 15 | ||||
| -rw-r--r-- | git/.gitignore | 2 |
2 files changed, 17 insertions, 0 deletions
diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..2f7ff8a --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,15 @@ +[user] + name = schererleander + email = leander@schererleander.de + signingkey = 5CAFE00A65A3F3B828F937DBA3502B180BC1D41A +[alias] + co = checkout + st = status + br = branch + ci = commit +[core] + excludesfile = /Users/schererleander/.gitignore +[pull] + rebase = true +[commit] + gpgsign = true
\ No newline at end of file diff --git a/git/.gitignore b/git/.gitignore new file mode 100644 index 0000000..93bfd12 --- /dev/null +++ b/git/.gitignore @@ -0,0 +1,2 @@ +*~ +.DS_Store |
