From b77c2b6a1d75f96a8e1345ddae925faf02ccc949 Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Wed, 8 Sep 2021 21:39:45 +1000 Subject: [PATCH] Add git dotfiles --- dot_gitconfig | 23 +++++++++++++++++++++++ dot_gitignore | 10 ++++++++++ 2 files changed, 33 insertions(+) create mode 100644 dot_gitconfig create mode 100644 dot_gitignore diff --git a/dot_gitconfig b/dot_gitconfig new file mode 100644 index 0000000..9dc2245 --- /dev/null +++ b/dot_gitconfig @@ -0,0 +1,23 @@ +[alias] + co = checkout + l = log --graph --decorate --pretty=oneline --abbrev-commit + prune = fetch --prune + stash-all = stash save --include-untracked + s = status + undo = reset --soft HEAD^ +[commit] + gpgSign = true +[credential] + helper = osxkeychain +[help] + autocorrect = 1 +[push] + default = simple +[user] + name = Jip J. Dekker + email = jip@dekker.one + signingkey = 517DF4A00618C9C3 +[pull] + ff = only +[init] + defaultBranch = develop diff --git a/dot_gitignore b/dot_gitignore new file mode 100644 index 0000000..0752874 --- /dev/null +++ b/dot_gitignore @@ -0,0 +1,10 @@ +.DS_Store +.svn +*~ +*.swp +*.rbc +.idea/ +__pycache__/ +.vscode +.clangd/ +compile_commands.json