> For the complete documentation index, see [llms.txt](https://notes.iveselov.info/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.iveselov.info/bits-and-pieces/git.md).

# Git

* To pull and merge master from origin without leaving the current branch: `git fetch origin master:master`
* To push a new branch to origin (assuming it's checked out now): `git push -u origin HEAD`
