git rm -r --cached .
git add .
git commit -m ".gitignore is now working"git rm -r --cached . && git add . && git commit -m ".gitignore is now working"Official: https://atom.io/
Open setting(ctrl+,) and select Install Tab
Install Packages as follow:
alias g='git'
source ~/.git-completion.bash
copy this file to your home directory
git-completion.bash
Official: http://cmder.net/
Settings > Startup > Tasks
set Commands as follow:
cmd /c ""<path-to-your-git-directory>\Git\bin\bash.exe" --login -i" -new_console:d:"<default-directory>"
| set encoding=utf-8 | |
| scriptencoding utf-8 | |
| set fileencoding=utf-8 " 保存時の文字コード | |
| set fileencodings=ucs-boms,utf-8,euc-jp,cp932 " 読み込み時の文字コードの自動判別. 左側が優先される | |
| set fileformats=unix,dos,mac " 改行コードの自動判別. 左側が優先される | |
| set ambiwidth=double " □や○文字が崩れる問題を解決 | |
| set expandtab " タブ入力を複数の空白入力に置き換える | |
| set tabstop=4 " 画面上でタブ文字が占める幅 | |
| set softtabstop=4 " 連続した空白に対してタブキーやバックスペースキーでカーソルが動く幅 |