0
0
Fork 0
mirror of https://codeberg.org/forgejo/docs.git synced 2024-11-21 17:36:59 -05:00

Change topic branch example to avoid confusion

This commit is contained in:
Panagiotis "Ivory" Vasilopoulos 2024-02-12 13:57:03 +01:00 committed by Earl Warren
parent 19be4452a0
commit d0acbd9821

View file

@ -21,7 +21,7 @@ A full list of the parameters, as well as information on avoiding duplicate Pull
Suppose that you cloned a repository and created a new commit on top of the `main` branch. A Pull Request targeting the `main` branch using your **currently checked out branch** can be created like this: Suppose that you cloned a repository and created a new commit on top of the `main` branch. A Pull Request targeting the `main` branch using your **currently checked out branch** can be created like this:
```shell ```shell
git push origin HEAD:refs/for/main -o topic="topic-branch" git push origin HEAD:refs/for/main -o topic="agit-typo-fixes"
``` ```
The topic will be visible in the Pull Request and it will be used to associate further commits to the same Pull Request. Under the hood, it is essentially just a branch. The topic will be visible in the Pull Request and it will be used to associate further commits to the same Pull Request. Under the hood, it is essentially just a branch.