Most human beings have an almost infinite capacity for taking things for granted

—Aldous Huxley, Brave New World

Highlight absolutely any words you want.

hugo new content content/posts/my-first-post.md

git pull = fetch and merge

git checkout -b [name_of_your_new_branch]

Push the branch on github

$ git push origin [name_of_your_new_branch]

nice ASCII graph

	git log dev-lappi --pretty=format:"%h %s" --graph

last 5 commits

	git log --name-status -5 

unstage files

git reset

revert uncommitted changes

git restore <file>
git config --global diff.tool meld
git config --global difftool.meld.path "/path/to/meld"
git config --global difftool.meld.cmd "meld \"$LOCAL\" \"$REMOTE\""

git show gitconfig files

git config --list --show-origin

configure diff tool

[diff]
	tool = WinMergePortable
[merge]
    tool = WinMergePortable

[difftool "WinMergePortable"]
	prompt = false
	cmd = "C://app//winmerge//WinMergeU.exe" $LOCAL $REMOTE 

[alias]
    d = difftool --no-prompt

Misc Color palette https://coolors.co/palettes/trending

https://github.com/rayjolt/hugo-multilingual-example/blob/master/content/post/markdown-cheatsheet.en.md