This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a new repo at github called `test` | |
# On your local machine: | |
$ cd test | |
$ git init | |
Initialized empty Git repository in /Users/bcf/Git/me/test/.git/ | |
$ touch README | |
$ git add . | |
$ git commit -m 'first commit' | |
# wire everything up to the remote at github (replace yourName) |