Skip to content

Instantly share code, notes, and snippets.

View featherplain's full-sized avatar
🏠
Working from home

featherplain featherplain

🏠
Working from home
View GitHub Profile
@featherplain
featherplain / bash.md
Last active February 6, 2016 07:05
bash cheetsheet

やりかけの作業を一時保存する

$ git stash // 一時保存
$ git stash pop // 元に戻す
$ git stash list // 保存中の作業一覧を確認

直前のコミットを修正

直前のコミットメッセージのみを修正

#editorconfig
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@featherplain
featherplain / .bash_profile
Last active August 29, 2015 14:10
bash config
# Aliases
alias sudo="sudo "
alias tr="trash"
alias gemupdate="sudo update_rubygems; sudo gem update; sudo gem cleanup"
alias brewupdate="brew update; brew upgrade; brew cleanup"
alias npmupdate="npm cache clear; npm update -g"
alias bashconf="vi ~/.bash_profile"
# Change directory
alias ..="cd .."