- Install Git Windows, Linux/Mac.
- Find Eclipse's workspace folder. You specified this.
- Fork the original repo using Githubs web interface
- Set up syncing between your fork and the original repo. Check syncing.
- Clone the repo into your workspace folder. Follow this guide Cloning a repo.
- Import project into Eclipse using Import>General>Existing Project
- Make changes.
- Send changes to server. (This only changes your fork).
- Make pull request. Pull request guide
To check your current upstream branch.
git remote -v
To sync to the original repo.
git remote add upstream <link to *this* repo>
Verify upstream branch.
git remote -v
Add files to staging area.
git add *
Commit to local repo.
git commit -m "Clear indiciator of exactly what you are commiting"
Push to remote server.
git push origin master
###UML Gliffy