- Phil Lopreiato and Neel Shah
- 10/15/2015
- GWU ACM Chapter
This repository goes along with the How2Git workshop.
For more details, take a look at this guide
- Fork this repository to your own account by clicking the button near the top-right of this page.
- Clone the repository onto your local machine by running
git clone https://github.com/phil-lopreiato/git-workshop.git
and then enter the project directory (cd git-workshop
) - Create a new local branch in your terminal for your feature (
git checkout -b my-feature
) - Make your changes (implement a funcition in SimpleCalculator.java)
- Commit your changes (
git add SimpleCalculator.java
andgit commit
) - Push your changes to your fork on GitHub (
git push
) - Submit a pull request to this repository to get your changed merged in
- Listen to and incorporate feedback from maintainers who review your pull request. When they're ready, they'll merge the changes
Congratulations! You have now contribued code to an open source project over GitHub!