Browse Source

Fix gd + add git push + pull

Brendan Abolivier 6 years ago
parent
commit
1522ac8e85
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      .bashrc

+ 3
- 1
.bashrc View File

@@ -32,11 +32,13 @@ alias lll='ls -lisha'
32 32
 alias la='ls -a'
33 33
 alias ga='git add'
34 34
 alias gs='git status'
35
-alias gd='git status'
35
+alias gd='git diff'
36 36
 alias gc='git commit'
37 37
 alias gr='git rm'
38 38
 alias gco='git checkout'
39 39
 alias gl="git 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"
40
+alias gps='git push'
41
+alias gpl='git pull'
40 42
 alias s='sudo systemctl'
41 43
 alias log='sudo journalctl -u'
42 44
 alias logf='sudo journalctl -fu'