Skip to content

Instantly share code, notes, and snippets.

View jirilebl's full-sized avatar

Jiří Lebl jirilebl

View GitHub Profile
@jirilebl
jirilebl / gist:52192f024457bc1e2d4b40751c001270
Last active March 7, 2021 23:38
git commands I keep forgetting
remotes: origin = github, upstream = the thing we forked things from
# sync upstream master, make sure you're on master and push back out onto github (origin)
git fetch --all
git merge upstream/master
git push
# get branch from github and make a local tracking branch
git checkout -b dev origin/dev
@jirilebl
jirilebl / useful.gel
Created December 15, 2017 16:49
useful .gel commands (for genius)
#test various grade curves with equal spacing
for n=0 to 5 do print(100-n*13 + "\t" + AlphabetToString([n]," ABCDF"))