Devshelpdevs web application for donors
-
Fork this repository
-
Open your command terminal
-
Type this following commands one after the other
git clone https://github.com/DevsHelpDevs/devshelpdevs_webapp.git git remote add origin https://github.com/DevsHelpDevs/devshelpdevs_webapp.git cd devshelpdevs_webapp -
You will notice you are on the (dev) branch, do not start coding immediately. First create a new branch out of the dev branch using the following commands
git checkout -b "your new branch name"NOTE * These are conventions for naming branches are
- For new features use => "feature/your_username/feature-name"
- For bug fix use => "bugfix/your_username/bug-name"
- For hotfix use => "hotfix/your_username/hotfix-name"
-
Then you can start coding.
-
When done, always first pull the latest changes and updates from the repository using
git pull origin. -
Stage your all changes using
git add .. -
Commit your changes using
git commit -m "reasonable commit message. -
Push your code to github using
git push -u origin "your new branch name". -
Make a pull request on github.