準備
- 溫水 泡開冬粉 20 分鐘 (防止結塊)
製作
- 熱鍋加油 中火 蒜末 + 薑末 爆香
- 下豬絞肉 小火 翻炒逼油
// -------------------------------------------------- | |
// require modules | |
// -------------------------------------------------- | |
const pkg = require('./package.json') | |
const path = require('path').posix | |
const exec = require('child_process').execSync | |
const BannerPlugin = require('webpack/lib/BannerPlugin.js') | |
// -------------------------------------------------- | |
// Prerender routes |
# find dangling commit hash in the git history
git fsck --no-reflog | awk '/dangling commit/ {print $3}'
# view in git log
glog $(git fsck --no-reflog | awk '/dangling commit/ {print $3}')
# then apply it back
git stash apply {dropped_stash_hash}