Skip to content

Latest commit

 

History

History
69 lines (50 loc) · 1.54 KB

CONTRIBUTING.md

File metadata and controls

69 lines (50 loc) · 1.54 KB

Contributing to DA-Dash

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)

Creating a Pull Request(PR)

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 your pull request is merged

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