...
|
...
|
@@ -34,6 +34,8 @@ compdef _git glgg=git-log
|
34
|
34
|
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
|
35
|
35
|
compdef git-svn-dcommit-push=git
|
36
|
36
|
|
|
37
|
+alias gsr='git svn rebase'
|
|
38
|
+alias gsd='git svn dcommit'
|
37
|
39
|
#
|
38
|
40
|
# Will return the current branch name
|
39
|
41
|
# Usage example: git pull origin $(current_branch)
|
...
|
...
|
@@ -47,6 +49,10 @@ function current_branch() {
|
47
|
47
|
alias ggpull='git pull origin $(current_branch)'
|
48
|
48
|
compdef ggpull=git
|
49
|
49
|
alias ggpush='git push origin $(current_branch)'
|
|
50
|
+<<<<<<< HEAD
|
50
|
51
|
compdef ggpush=git
|
51
|
52
|
alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
|
52
|
53
|
compdef ggpnp=git
|
|
54
|
+=======
|
|
55
|
+alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
|
|
56
|
+>>>>>>> e5e032f... adding git svn aliases
|