Sha256: c16e8bab3103bedba06242582675f3a021085be9d254330c201e1c6d21936dd9

Contents?: true

Size: 1.42 KB

Versions: 2

Compression:

Stored size: 1.42 KB

Contents

[user]
	name = Tom Scott
	email = tubbo@psychedeli.ca
[repo]
	user = tubbo
[github]
	user = tubbo
[alias]
	ci = commit
	st = status
	on = branch
	br = branch
  co = checkout
  l = log --graph --pretty=format':%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset'
  lol = log --pretty=oneline --abbrev-commit --graph --decorate
  unstage = reset HEAD
  staged = diff --cached
  unstaged = diff
  current-branch = !git symbolic-ref -q HEAD | sed -e 's|^refs/heads/||'
  track = checkout -t
  restore = stash pop
  # Rewrite of 'git-process' in git. Basically the same thing without
  # the _parking_ branch (it's the same as master)
  sync = !git fetch origin && git rebase master
  new-fb = !git checkout master && git pull --rebase origin master && git checkout -b $2
  expose = !git sync && git push origin `git current-branch`
  pull-upstream = !git pull --rebase origin master && git checkout master
  to-master = !export GIT_BRANCH=`git current-branch` && git pull-upstream  && git merge $GIT_BRANCH && git push origin master
[apply]
  whitespace = warn
[color]
  diff = auto
  status = auto
  branch = auto
  ui = true
[help]
  autocorrect = 1
[status]
  submodule = 1
[push]
  # Only push branches that have been set up to track a remote branch.
  default = current
[core]
	editor = vim
  pager = less -r
	excludesfile = /Users/necromancer/.gitignore
[merge]
  tool = vimdiff

[gitProcess]
	keepLocalIntegrationBranch = true
[rerere]
	enabled = 1

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zsh_dots-0.5.9 config/gitconfig
zsh_dots-0.5.8 config/gitconfig