Sha256: df22c183de016715419b1a82245c5a2e66bccc8b301f80f588ff6e286ffc50e0

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 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
  # Log display from "Advanced Git" PeepCode screencast, with train tracks.
  l = log --graph --pretty=format':%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset'
  # Alternate log display from Scott Chacon
  lol = log --pretty=oneline --abbrev-commit --graph --decorate
  # Other useful aliases:
  unstage = reset HEAD
  staged = diff --cached
  unstaged = diff
  current-branch = !git symbolic-ref -q HEAD | sed -e 's|^refs/heads/||'
  # Usage: git track origin/feature-123-login-form
  track = checkout -t
  restore = stash pop
[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

4 entries across 4 versions & 1 rubygems

Version Path
zsh_dots-0.5.6 config/gitconfig
zsh_dots-0.5.5 config/gitconfig
zsh_dots-0.5.4 config/gitconfig
zsh_dots-0.5.3 config/gitconfig