public
Description: bash scripts, aliases, other misc things go here
Homepage: http://opensource.thinkrelevance.com
Clone URL: git://github.com/relevance/etc.git
Search Repo:
git aliases
rsanheim (author)
Fri Apr 11 07:11:04 -0700 2008
commit  feadfa8b6d7d71039d27fd1eeed2b11fcf9a979f
tree    cc853f8f5046f0157630e0943bcbff188c168ec9
parent  c4490ba208e1d1abc01768730acc114c70e9c3ea
...
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
0
@@ -1 +1,14 @@
0
+# Thanks to Geoffrey's peepcode for many of these
0
+alias g='git'
0
+alias gst='git status'
0
+alias gl='git pull'
0
+alias gp='git push'
0
+alias gd='git diff | mate'
0
+alias gc='git commit -v'
0
+alias gca='git commit -v -a'
0
+alias gb='git branch'
0
+alias gba='git branch -a'
0
+
0
+alias gsd='git svn dcommit'
0
+alias gsb='git svn rebase'
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
0
@@ -1 +1,17 @@
0
+# Add this to .gitconfig in your home dir to enable things like "git ci -m message"
0
+[alias]
0
+ ci = commit
0
+ co = checkout
0
+ st = status
0
+ br = branch
0
+
0
+ # show difference between the HEAD and the index
0
+ staged = diff --cached
0
+
0
+ # show difference between working tree and the index
0
+ unstaged = diff
0
+
0
+ # show staged and unstaged changes (what would be committed with "git commit -a")
0
+ both = diff HEAD
0
+

Comments

    No one has commented yet.