Skip to content
Katherine Ye edited this page Oct 10, 2020 · 3 revisions
  • Filter out long-term GitHub issues with -label:bucket-list or focus on active ones with label:active

  • If your emacs TeX mode is interfering with viewing Style programs, try M-x bibtex-mode

  • To find and replace strings (from OLD to NEW) over all Style programs: find . -type f -name "*.sty" -print0 | xargs -0 sed -i '' -e 's/OLD/NEW/g'

  • To squash all git commits into one, follow this guide

e.g.

git checkout web-runtime
git fetch
git pull
git merge web-perf
git reset origin/web-runtime
git add --all
git commit "[web-perf] all changes on this branch got squashed into one change on top of web-runtime"
Clone this wiki locally