Good Good Study, Day Day Up!

willmafh

git recipes

to fully sync commit logs from an upstream repo to your forked repo # add upstream remote if not ready git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPO.git # verify remote, there are origin and remote git remote -v # fetch all updates from both remotes git fetch…

Continue reading...
willmafh

Effective Lua

NOTE: This is not a Lua tutorial or reference, just a place to record something interesting when I read Lua source code, which is version 5.4.3 -- both of cases are correct lua -e'print("hello world") lua -e 'print("hello world")' command prompt command prompt default values…

Continue reading...