Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 368 Bytes

File metadata and controls

17 lines (14 loc) · 368 Bytes

Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:bstaub/shellscripts.git
git push -u origin master

Push an existing repository from the command line

git remote add origin git@github.com:bstaub/shellscripts.git
git push -u origin mastera