DA-Dash is open to contribute for following 9 developers.
- Kushan (@kepta)
- Kuljeet (@KuljeetJ)
- Nihit (@Nihitavr)
- Vadhir (@flibertigibet)
- Dushyant (@Dushyant7)
- Barkha (@barkhabhojak)
- Nidhi (@berzentine)
- Saloni (@Salonij18)
- Deergha (@Deergh)
Follow the guidelines to create pull request
-
Make your changes in a new git branch:
git checkout -b issueName
-
Follow the coding conventions and use eslint.
-
Commit your changes using a descriptive commit message.
git commit
Note: the optional commit
-a
command line option will automatically "add" and "rm" edited files. -
Push your branch to GitHub:
git push origin issueName
-
If any changes suggested:
- Make the required updates.
- Commit your changes to your branch (e.g.
issueName
). - Push the changes to your GitHub repository (this will update your Pull Request).
After PR is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:
-
Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:
git push origin --delete issueName
-
Check out the master branch:
git checkout master
-
Delete the local branch:
git branch -D issueName
-
Update your master with the latest upstream version:
git pull --ff upstream master