Skip to content

Commit defd109

Browse files
authored
Merge pull request #123 from isaack-njama/add-to-guidelines
Add instructions add and push changes to contribution guidelines
2 parents 10c9b7f + b37fef1 commit defd109

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,20 @@ npm run dev
101101
- Open this directory in your favorite text editor / IDE, and see your changes live by visiting `localhost:3000` from your browser
102102
- Pro Tip: Explore scripts within `package.json` for more build options
103103

104-
1. Commit and prepare for pull request (PR). In your PR commit message, reference the issue it resolves (see [how to link a commit message to an issue using a keyword](https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword).
104+
1. Add changes made to the repo addressing an issue
105+
```
106+
git add [file_name]
107+
```
108+
2. Commit and prepare for pull request (PR). In your PR commit message, reference the issue it resolves (see [how to link a commit message to an issue using a keyword](https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword).
105109

106110
```
107111
$ git commit -m "brief description of changes [Fixes #1234]"
108112
```
109113

110-
4. Push to your GitHub account
114+
1. Push to your GitHub account
111115

112116
```
113-
$ git push
117+
$ git push -u origin [feature_branch]
114118
```
115119

116120
### Submit your Pull Request (PR)🚀

0 commit comments

Comments
 (0)