-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_bash_aliases
More file actions
23 lines (23 loc) · 807 Bytes
/
dot_bash_aliases
File metadata and controls
23 lines (23 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#alias uwlinenv='ssh -Y smeyerre@linux.student.cs.uwaterloo.ca'
alias cp='cp -i -v'
alias mv='mv -i -v'
alias rm='rm -i'
alias la='ls -a -h -l -F --group-directories-first --color=auto'
alias ls='ls -F --format=single-column --group-directories-first --color=auto'
alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias bc='bc -l'
alias mkdir='mkdir -p -v'
alias vim='nvim'
alias gs='git status --column'
alias ga='git add'
alias gc='git commit'
alias gf='git fetch'
alias gp='git push'
alias gr='git rebase'
alias gch='git checkout'
alias gb='git branch'
alias gd='git diff'
alias gl="git log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -n 10"
alias get_idf='. $HOME/esp/esp-idf/export.sh'