Slides: github.com/Yonet/2016-03-12-ac
Write what you remember & your questions about:
git clone https://github.com/Yonet/ac-algorithms cd ac-algorithms
git checkout -b your-branch-name
Solve the questions inside simpleAdding folder.
git status
git add file-name git add . git statusadd . to add all changed files. Not a good idea! Git status to check what's been added.
git commit -m "I have added some amazing functionality"Commit messages are important. Describe what changed well. It makes it easier to find changes.
git push origin your-branch-name
Ready to create your first pull request to master branch?
Thank you for your attention!