diff options
| author | Simen A. W. Olsen <so@bjerk.io> | 2020-11-21 14:01:35 +0100 |
|---|---|---|
| committer | Simen A. W. Olsen <so@bjerk.io> | 2020-11-21 14:01:35 +0100 |
| commit | decd709def67526c270e37d888693d5ef6dca990 (patch) | |
| tree | 70cdfbd138ce96c96d12ccd0cbbfebc4ba6efea0 /.gitconfig | |
| parent | 41e96227e712ce1094c78c7c57d64f5df61b3327 (diff) | |
| download | dotfiles-decd709def67526c270e37d888693d5ef6dca990.tar.gz dotfiles-decd709def67526c270e37d888693d5ef6dca990.zip | |
a bunch of additions
Diffstat (limited to '.gitconfig')
| -rw-r--r-- | .gitconfig | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..f777d19 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,49 @@ +[apply] + # Detect whitespace errors when applying a patch + whitespace = fix +[core] + # Make `git rebase` safer on OS X + # More info: <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/> + trustctime = false + editor = emacs +[color] + # Use colors in Git commands that are capable of colored output when + # outputting to the terminal. (This is the default setting in Git ≥ 1.8.4.) + ui = auto + +[color "branch"] + current = yellow reverse + local = yellow + remote = green + +[color "diff"] + meta = yellow bold + frag = magenta bold # line info + old = red # deletions + new = green # additions + +[color "status"] + added = yellow + changed = green + untracked = cyan + +[diff] + # Detect copies as well as renames + renames = copies +[help] + # Automatically correct and execute mistyped commands + autocorrect = 1 +[merge] + # Include summaries of merged commits in newly created merge commit messages + log = true +[commit] + gpgsign = true +[pull] + rebase = true +[gpg] + program = gpg +[user] + name = Simen A. W. Olsen + email = so@bjerk.io +[github] + user = cobraz |
