-
-
Save ak-is-ok/82b533039ee33f9c7d2d to your computer and use it in GitHub Desktop.
Configurations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.gemrc | |
install: --no-rdoc --no-ri | |
update: --no-rdoc --no-ri |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.gitconfig | |
[user] | |
name = Aleksandr Kalashnikov | |
email = [email protected] | |
[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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.ssh/config | |
Host hostname | |
User username | |
HostName name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment