annotate .gitconfig @ 694:ebca6d85213a

File "/usr/lib/python3/dist-packages/IPython/config/__init__.py", line 16, in <module> from .application import * File "/usr/lib/python3/dist-packages/IPython/config/application.py", line 31, in <module> from IPython.config.configurable import SingletonConfigurable File "/usr/lib/python3/dist-packages/IPython/config/configurable.py", line 33, in <module> from IPython.utils.text import indent, wrap_paragraphs File "/usr/lib/python3/dist-packages/IPython/utils/text.py", line 28, in <module> from IPython.external.path import path File "/usr/lib/python3/dist-packages/IPython/external/path/__init__.py", line 2, in <module> from path import * File "/home/jhammel/python/path.py", line 25 print root(path) ^
author Jeff Hammel <k0scist@gmail.com>
date Wed, 09 Jul 2014 16:26:49 -0700
parents 2786c3293fb5
children 6ba565f99696
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
223
ce34e4e8f357 add .gitconfig, oh the irony
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 [core]
ce34e4e8f357 add .gitconfig, oh the irony
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2 excludesfile = /home/jhammel/.gitignore
ce34e4e8f357 add .gitconfig, oh the irony
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 [user]
ce34e4e8f357 add .gitconfig, oh the irony
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 name = Jeff Hammel
604
2786c3293fb5 STUB: .gitconfig
Jeff Hammel <k0scist@gmail.com>
parents: 428
diff changeset
5 email = k0scist@gmail.com
223
ce34e4e8f357 add .gitconfig, oh the irony
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
6 [alias]
301
2a1eeec1b4ea add a git root command
Jeff Hammel <jhammel@mozilla.com>
parents: 288
diff changeset
7 branches = branch -a
336
b27ea86a9c9e alias to make patch
Jeff Hammel <jhammel@mozilla.com>
parents: 315
diff changeset
8 branchname = git rev-parse --abbrev-ref HEAD
315
f8ef5a974df8 add a discard command
Jeff Hammel <jhammel@mozilla.com>
parents: 313
diff changeset
9 discard = reset HEAD --hard
336
b27ea86a9c9e alias to make patch
Jeff Hammel <jhammel@mozilla.com>
parents: 315
diff changeset
10 patch = !git diff > ~/$(git rev-parse --abbrev-ref HEAD).diff
424
d214e0f38ab1 -> pushbranch
Jeff Hammel <jhammel@mozilla.com>
parents: 392
diff changeset
11 pushbranch = !git push origin $(git rev-parse --abbrev-ref HEAD)
301
2a1eeec1b4ea add a git root command
Jeff Hammel <jhammel@mozilla.com>
parents: 288
diff changeset
12 root = rev-parse --show-toplevel
288
498210b6e1a9 add branches alias
Jeff Hammel <jhammel@mozilla.com>
parents: 223
diff changeset
13 st = status
604
2786c3293fb5 STUB: .gitconfig
Jeff Hammel <k0scist@gmail.com>
parents: 428
diff changeset
14 up = !git pull origin master && git push origin master
428
59e6c8115a97 .gitconfig
Jeff Hammel <jhammel@mozilla.com>
parents: 424
diff changeset
15 wip = !git commit -a -m 'wip' && git push origin $(git rev-parse --abbrev-ref HEAD)