Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 844 Bytes

github-setup.md

File metadata and controls

35 lines (19 loc) · 844 Bytes

Github instructions for experimentation with dummy repo

Sign up

If you do not have one already, sign up for a github account. Please remember your login and password when attending workshop.

github setup

Fork

git config --global user.name "YOUR NAME"

git config --global user.email "YOUR EMAIL ADDRESS"

git clone https://github.com/YOUR-USERNAME/dummy

cd dummy

git remote add upstream https://github.com/unidata/dummy.git

git fetch upstream

#sanity check, should see 'origin' and 'upstream' remotes
git branch -a

# Later if you wish to save (i.e., push out) your commits
git push origin master