-
A non-technical reminder to my future self
If you ever hesitate whether you should buy a crazy expensive trans-atlantic plane ticket, shift your biological clock by 6 hours for just a three day stay, miss a meeting of your research group and reschedule another one:
-
Git: Fast-forwarding a branch without checking it out
When using git, I sometimes want to fast-forward some
branchA, but currently I’m onbranchB. The simplest way to do this is to checkoutbranchA, do a pull (or another command to fast-forwardbranchA), and then to checkoutbranchBagain.However, when switching branches, git modifies my source files, so when I’m back on
branchBand recompile,makewill think many files changed, and the recompilation might take a long time.So it would be nice to fast-forward branches without checking them out, and here’s how to do it.
-
Site Under Construction
I’m currently working on setting up a website and blog with Jekyll and Github pages.
As you can see, it is far from finished!