@todayilearned #altText A command-line session showing repository creation, addition of a file, and remote synchronization:
$ git init
Initialized empty Git repository in /tmp/tmp.IMBYSY7R8Y/.git/
$ cat > README << 'EOF'
> Git is a distributed revision control system.
> EOF
$ git add README
$ git commit
[matter (root-commit) e4dcc69] You can edit locally and push to any remote.
1 file changed, 1 insertion(+)
create mode 100644 README
$ git remote add origin got@github.com:crown/that's.git
$ git push -u origin master