LoginSignup
1
2

More than 3 years have passed since last update.

自分の~/.bashrcに必ず追加しているもの

Posted at

もっとあるんだけどとりあえずこれは必ず書いてます。
Historyは、個人的に超重要だったりします。

export HISTTIMEFORMAT='%F %T ' 
export HISTSIZE=50000 

export LANG=ja_JP.UTF-8 

alias ggg='cat ~/.bashrc | grep git' 

alias la='ls -la' 
alias lt='ls -lt' 

alias gcd='cd /var/www/html && pwd' 
alias gcommit='git commit -am' 
alias gfetch='git fetch' 
alias gpull='git pull' 
alias gpush='git push -u origin master' 

alias gone='git log --oneline' 
alias glog='git log' 
alias gstat='git status'

set -o vi

たいしたこと書いてないので申し訳なす。。
emacs派の人とは仲良く出来ないと思ってます。。。。。。。。。。。。。。。

1
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2