-
Notifications
You must be signed in to change notification settings - Fork 0
/
.aliases_zsh
48 lines (38 loc) · 880 Bytes
/
.aliases_zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
echo $shell
alias a=alias
a zs="source ~/.zshrc"
# Shell
a h="history"
a c="clear"
# Directory
a u="cd .."
a uu="cd ../.."
a uuu="cd ../../.."
# Listing
a ls="ls --color=always"
a ll="ls -al"
a ltr="ls -ltr"
# Grepping
a grep="grep --color=auto"
a fgrep="fgrep --color=auto"
a egrep="egrep --color=auto"
a diff="diff --color=auto"
# Shortcut
a wk="cd ~/workspace"
a lfx="cd ~/workspace/effects/LumiEffects"
# Git
alias gs='git status '
alias ga='git add '
alias grm='git rm '
alias gb='git branch '
alias gc='git commit'
alias gd='git diff'
alias go='git checkout '
#alias gk='gitk --all&'
#alias gx='gitx --all'
alias got='git '
alias get='git '
# WINDOWS
# alias multipull="find . -mindepth 1 -maxdepth 1 -type d -print -exec git -C {} pull \;"
alias findPortalAdd="find -size +100M -not -path './.git/*' -and -not -path './_portal/*' -exec git-portal add {} \;"
#EOF