Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# vim: noexpandtab:ts=4:sw=4
[init]
defaultBranch = main
[user]
name = Jeff Wallace
email = <%= print("Your Email: "); STDOUT.flush; STDIN.gets.chomp %>
signingkey = <%= print("Your GPG signing key: "); STDOUT.flush; STDIN.gets.chomp %>
[github]
user = tjwallace
[alias]
ci = commit --verbose
amend = commit --amend
co = checkout
st = status -sb
hist = log --pretty=format:\"%h | %ad | %s %Cgreen[%an]%Creset%Cred%d%Creset\" --graph --date=short
d = diff
dc = diff --cached
yolo = push --force-with-lease origin HEAD
noff = merge --no-ff
ff = merge --ff-only
rbm = rebase origin/master
rbmi = rebase -i origin/master
up = fetch --all --prune
[core]
editor = vim
pager = most
excludesfile = ~/.gitignore
[color]
ui = auto
[push]
default = current
autoSetupRemote = true
[pull]
rebase = true
[commit]
gpgsign = true
[merge]
tool = opendiff
[mergetool]
keepBackup = false
[rebase]
autoSquash = true
autoStash = true
[rerere]
enabled = true
autoupdate = true
[blame]
ignoreRevsFile = .git-blame-ignore-revs