Quantcast
Channel: Bashタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 2870

とりあえず設定すること

$
0
0
.bashrc alias ls='ls -al --color=auto' alias mv='mv -i' alias rm='rm -i' alias cp='cp -i' alias ps='ps -ux' alias df='df -h' export HISTSIZE=100000 export LANG='ja_JP.UTF-8' export LC_ALL='ja_JP.UTF-8' export LC_MESSAGES='ja_JP.UTF-8' .vimrc set number set laststatus=2 .gitconfig # 下記のコマンドを実行すると.gitconfigへ書き込まれる. git config --global user.name "ユーザー名" git config --global user.email "メールアドレス" git config --global core.editor 'vim -c "set fenc=utf-8"' git config --global core.autocrlf false git config --global core.quotepath false git config --global color.diff auto git config --global color.status auto git config --global color.branch auto

Viewing all articles
Browse latest Browse all 2870

Trending Articles