annotate git/gitconfig @ 464:2279514d82e4

Move local git config stuff to local file.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 22 Mar 2019 17:32:20 -0700
parents 54bdd1f0f873
children 16cac382ca7c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
464
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
1 [user]
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
2 name = Ludovic Chabant
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
3 email = ludovic@chabant.com
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
4
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
5 [push]
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
6 default = simple
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
7
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
8 [alias]
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
9 tags = tag -l
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
10 branches = branch -a
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
11 remotes = remote -v
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
12 lg1 = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
13 lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
14 lg = !"git lg1"
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
15
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
16 [include]
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
17 path = gitconfig-${OS}
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
18 path = gitconfig-local
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
19
2279514d82e4 Move local git config stuff to local file.
Ludovic Chabant <ludovic@chabant.com>
parents: 454
diff changeset
20 # vim:ft=gitconfig:ts=2:sw=2