GitHub Repository for Web Application Project Version 1.0. Sponsored by Tink Tank.
-
Sprint 0.1
- Start Date: 15th June 2020
- Suneil Stanly
- Nishant Goswami
- Harjeet Singh
- Prakher Srivastava
- Ramanjaneyulu
- Sayon Jana
- Shikha Patel
- Siddhartha Dutta
- Sohan Patil
- Srijan Jain
- Step 1: Fork this repository.
- Step 2: Create a folder on your local machine and change directory.
mkdir <folder_name> && cd <folder_name>
- Step 3: Initialize an empty Git repository.
git init
- Step 4: Set up remote origin.
git remote add origin https://github.com/<your_username>/tink-mycontact.git
- Step 5: Pull files from your fork.
git pull origin master
- Step 6: Set up remote upstream.
git remote add upstream https://github.com/tinktankin/tink-mycontact.git
- Step 7: Check your remotes.
git remote -r
Expected output:
origin https://github.com/<your_username>/tink-mycontact.git (fetch)
origin https://github.com/<your_username>/tink-mycontact.git (push)
upstream https://github.com/tinktankin/tink-mycontact.git (fetch)
upstream https://github.com/tinktankin/tink-mycontact.git (push)
You are now set up to start contributing to this repository.
- Step 1: Update your remote fork. (Always before making your changes)
git fetch upstream
git merge upstream/master master
git push origin master
- Step 2: Write your code. Add files to staging and commit to your forked repository.
git add
git commit -m "<commit_message>"
git push origin master
- Step 3: Go to your forked repository and make a pull request. Make sure to provide appropriate comments with your pull request.