To create a git repository in the current directory, run:
git init
git remote add origin https://foo
git add my-file.md
git commit -m "Commit message"
git push origin master
Here is a link: GitHub's markdown documentation
We can make a list:
- foo
- bar
- baz
- here is a sublist
- more sublist
- is this a subsublist?
- let's found out!
We can have syntax-highlighted code:
def foo():
print("Hello, world!")
function foo () {
console.log("Hello, world!");
}