Central repository for all final project built at the end of Study JAM held in New Delhi (2016).
- Fork this repository
- Clone the newly forked repository
- Create a new branch in the forked repo, use naming convention
<nameofperson>_<nameofproject>_<studyjamname>
- Now add your project and make commits to the new branch you created in the last step.
- When done, send a pull request to this repository.
- Once your pull request is verified and project is running without issues , we merge your project.
- If you reached till this step , then sit back and have a cookies for you did good work! :D
-
Open github
-
Signup/Login as a user
-
Goto the Study JAM Repository
-
Fork the repository
-
Now copy the clone url of this newly created repository , provided on github
-
Open up terminal and clone the repository using the copied url
git clone https://github.com/<username>/study-jam-2016
-
Move into the created respository on your system
cd study-jam-2016
-
Create a new branch, using the naming convention
nameofperson_nameofproject_studyjamname
git checkout -b [nameofperson_nameofproject_studyjamname]
P.S : update the branch name with your values and dont include
[]
when using the git command -
Create/copy your android project into this directory
-
Add all the files to git
git add .
-
Commit your changes
git commit -m "your commit message"
-
Push your code and branch
git push origin [name_of_your_branch]
-
Open github and navigate to your profile page and open the forked
study-jam-2016
repo. -
Github would already be showing you an update regarding creating a
pull request
-
Click on
create pull request
and follow the steps, add comments/subject and then create a pull request. -
Boom ! You are done.
Repeat steps 10 and 11 as you make more changes and commit more on your branch. Your commits on the branch you created are all available to us since the time you created a pull request.