Skip to content

Commit 7279954

Browse files
author
Gaurav Singh
committed
Merge branch 'updatedContributionGuides' into main
2 parents eb9c059 + 0b72308 commit 7279954

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,18 @@ Backend automation. Please add relevant links and follow the same workflow
2727

2828
Please refer to this guide on
2929
[Github](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)
30+
31+
Here is an example flow:
32+
33+
```zsh
34+
# Checkout a new branch
35+
git checkout -b <branch_name>
36+
# Add changed files into staging
37+
git add .
38+
# Commit your files with relevant message
39+
git commit -m "<commit_message>"
40+
# Push files to remote
41+
git push --set-upstream origin <your_branch_name>
42+
# Click on the provided link to create a pull request on remote
43+
# Example PR: https://github.com/automationhacks/how-to-learn-test-automation/pull/8
44+
```

0 commit comments

Comments
 (0)