1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

doc: fix formating of points 7, 8, 9 in Example Workflow section (#5602)

This commit is contained in:
Larpon 2020-07-01 13:36:08 +02:00 committed by GitHub
parent aec3ea5d32
commit 673fe98cf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,14 +88,17 @@ making pullrequests, and you can just do normal git operations such as:
6. `git push pullrequest` # (NOTE: the `pullrequest` remote was setup on step 4) 6. `git push pullrequest` # (NOTE: the `pullrequest` remote was setup on step 4)
7. On GitHub's web interface, go to: https://github.com/vlang/v/pulls 7. On GitHub's web interface, go to: https://github.com/vlang/v/pulls
Here the UI shows a dialog with a button to make a new pull request based on Here the UI shows a dialog with a button to make a new pull request based on
the new pushed branch. the new pushed branch.
(Example dialog: https://url4e.com/gyazo/images/364edc04.png) (Example dialog: https://url4e.com/gyazo/images/364edc04.png)
8. After making your pullrequest (aka, PR), you can continue to work on the 8. After making your pullrequest (aka, PR), you can continue to work on the
branch `fix_alabala` ... just do again `git push pullrequest` when you have more branch `fix_alabala` ... just do again `git push pullrequest` when you have more
commits. commits.
9. If there are merge conflicts, or a branch lags too much behind V's master, 9. If there are merge conflicts, or a branch lags too much behind V's master,
you can do the following: you can do the following:
1. `git pull --rebase origin master` # solve conflicts and do 1. `git pull --rebase origin master` # solve conflicts and do
`git rebase --continue` `git rebase --continue`
2. `git push pullrequest -f` # this will overwrite your current remote branch 2. `git push pullrequest -f` # this will overwrite your current remote branch