A few steps, biased toward quick and easy use for DHSI 2015:
cd ~/desktop/
in the command line.git config --global user.name YOURNAME
(replacing YOURNAME with the name you want to attribute to your work).git config --global user.email EMAIL
(replacing EMAIL with the email address you used for GitHub).git init dhsi2015
(which creates a directory on your desktop).cd dhsi2015
(change your directory to dhsi2015
).touch README.md
(create a README file for your repository).open README.md
(open the README file).#
and be followed by a title for your repo. This is your header, with the h1
tag in HTML.control+S
or command+S
.git remote add origin https://github.com/handle/repo.git
(replacing handle
with your GitHub handle and repo
with the name of the repo you create during Step 3).git remote -v
(verifying your remote address).git add --all
(add all changes made to your repo).git commit -m 'message'
(replacing message
with a description of your changes, e.g., created README.md
).git push origin master
(push your files to the remote repo stored at GitHub.com).