File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -27,3 +27,18 @@ Backend automation. Please add relevant links and follow the same workflow
27
27
28
28
Please refer to this guide on
29
29
[ 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
+ ```
You can’t perform that action at this time.
0 commit comments