1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
##### a gitconfig #####
[core]
editor = gvim -v
excludesfile = ~/.gitignore
# autocrlf = input
[user]
name = Jeanine Adkisson
email = somebody@somewhere.place
[github]
user = jneen
token = "asdfasdfasdf"
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[merge]
defaultToUpstream = true
conflictStyle = diff3
[push]
default = upstream
[alias]
co = checkout
rs = reset
ci = commit -v
c = commit -v
st = status
s = status
b = branch
br = branch
d = diff
dc = diff --cached
a = add
ap = add --patch
ae = add --edit
ps = push
fe = fetch
sh = stash
# fast-forward
ff = merge --ff-only
# merge-commit
mc = merge --no-ff
rr = rebase origin
lg = log --decorate --graph --date=local
root = rev-parse --show-toplevel
head = rev-parse HEAD
;;;;;; SYSTEM.INI ;;;;;;
; for 16-bit app support
[drivers]
wave=mmdrv.dll
timer=timer.drv
[mci]
[driver32]
[386enh]
woafont=dosapp.FON
EGA80WOA.FON=EGA80WOA.FON
EGA40WOA.FON=EGA40WOA.FON
CGA80WOA.FON=CGA80WOA.FON
CGA40WOA.FON=CGA40WOA.FON
# HAProxy config
global
daemon
maxconn 256
defaults
mode http
## Other ##
[section-name]
foo-bar_ = baz
|