DRYな備忘録

Don't Repeat Yourself.

2014-11-13から1日間の記事一覧

Capistranoの"deploy"タスクが"restart"を呼ばない

3.1から仕様です deploy:restart task not executing · Issue #925 · capistrano/capistrano · GitHub Breaking changes: * deploy:restart task is no longer run by default. From this version, developers who restart the app on each deploy need to d…

【Git】nコミット前とのdiffを見たい

git

git diff HEAD~n HEAD git diff <commit_from> <commit_to> 例 % git diff HEAD~3 HEAD</commit_to></commit_from>