Sha256: 7b58f55f0fed1aab89e57575156c0e24fdc525c2a361e86c313d486f5b120502

Contents?: true

Size: 1.71 KB

Versions: 2

Compression:

Stored size: 1.71 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
  blog = log --graph --pretty=format':%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset' --decorate
  l = !git blog
  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 && git branch -D $GIT_BRANCH
  ship = !git to-master
  rename-branch = !export GIT_BRANCH=`git current-branch` && git checkout master && git branch -m $GIT_BRANCH $1
  delete-branch = !export GIT_BRANCH=`git current-branch` && git checkout master && git branch -D $GIT_BRANCH
  prepare = rebase --interactive 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.6.3 config/gitconfig
zsh_dots-0.6.2 config/gitconfig