diff --git a/profile/gitconfig b/profile/gitconfig new file mode 100644 index 0000000..22994f5 --- /dev/null +++ b/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 diff --git a/profile/hgrc b/profile/hgrc new file mode 100644 index 0000000..e19b9aa --- /dev/null +++ b/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