Navigation Menu

Skip to content

Commit

Permalink
add personal config of hg and git
Browse files Browse the repository at this point in the history
  • Loading branch information
dlutcat committed Jul 27, 2011
1 parent d82dee4 commit 01c1d49
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
28 changes: 28 additions & 0 deletions profile/gitconfig
@@ -0,0 +1,28 @@
[color]
ui = auto
branch = auto
diff = auto
status = auto
[color "branch"]
current = green bold
local = green
remote = yellow
[color "diff"]
meta = blue bold
frag = blue
old = red bold
new = green bold
[color "status"]
added = green
changed = yellow
untracked = blue bold
[alias]
co = checkout
st = status
ci = commit
br = branch
df = diff
pl = pull
ps = push
[branch]
autosetupmerge = true
35 changes: 35 additions & 0 deletions profile/hgrc
@@ -0,0 +1,35 @@
[paths]
default = http://192.168.2.60:8000/hg_fuwo

[extensions]
color =

[color]
status.modified = magenta bold
status.added = green bold
status.removed = red bold
status.deleted = cyan bold
status.unknown = blue bold
status.ignored = black bold
qseries.applied = blue bold underline
qseries.unapplied = black bold
qseries.missing = red bold
diff.diffline = bold
diff.extended = cyan bold
diff.file_a = red bold
diff.file_b = green bold
diff.hunk = magenta
diff.deleted = red
diff.inserted = green
diff.changed = white
diff.trailingwhitespace = bold red_background

[alias]
st = status
ci = commit
up = update
br = branch
df = diff
pl = pull
ps = push
rv = revert --no-backup

0 comments on commit 01c1d49

Please sign in to comment.