commit b77c2b6a1d75f96a8e1345ddae925faf02ccc949 Author: Jip J. Dekker Date: Wed Sep 8 21:39:45 2021 +1000 Add git dotfiles 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