Lazy Diary @ Hatena Blog

PowerShell / Java / miscellaneous things about software development, Tips & Gochas. CC BY-SA 4.0/Apache License 2.0

Entries from 2015-01-01 to 1 year

現在のブランチの作業成果物を GitHub へ pushする

currentbranch=`git status | grep "On branch" | cut -d " " -f3` git push origin $currentbranch git checkout master git pull upstream master git push origin master git checkout $currentbranch git rebase master git push -f origin $currentbran…

Pro Git 2nd Edition翻訳時の初版(Markdown)流用方法

csplit 01-chapter8.markdown '/^## /' {*}で元々のMarkdownを節ごとに分解したら、ファイル名を2nd Editionに合わせて変更し、その上で以下のように役物を変換する。 grep -l '’' ./* | xargs sed -i.bak -e 's/’/'\''/g' grep -l ' "' ./* | xargs sed -i.…