This is a repository for users to learn how to use git version control.
git clone git@github.com:LCMeed/learning-git.git
git checkout -b lisas_first_branch
Either add files individually:
git add README.md
Or all at once:
git add *
Make sure all files that you've changed and want to commit show up in the index/staging area.
git status
git commit -m "I've updated the README guys!"
git push origin lisas_first_branch
Navigate to the repo and click the "Compare & pull request" button.
Many thanks to Roger Dudler for "git - the simple guide"
https://rogerdudler.github.io/git-guide/