kalashnikovvv
11/13/2013 - 3:24 PM

Configurations

Configurations

# ~/.ssh/config

Host hostname
User username
HostName name
# ~/.gitconfig

[user]
	name = Aleksandr Kalashnikov
	email = aleksandr.kalashnikoff@gmail.com

[core]
    editor = "subl -n -w"

[alias]
	br = branch
	ci = commit
	clr = clean -df
	co = checkout
	cp = cherry-pick
	cpa = cherry-pick --abort
	cpc = cherry-pick --continue
	pl = pull
	plr = pull --rebase
	ps = push
	rb = rebase
	rba = rebase --abort
	rbc = rebase --continue
	rsh = reset --hard
	rss = reset --soft
	st = status

[push]
	default = simple

[color]
	ui = auto
# ~/.gemrc

install: --no-rdoc --no-ri
update:  --no-rdoc --no-ri