Change the default branch in the agit docs (#27621) (#27623)

Backport #27621 by @lng2020

It's main now.
relevant #27579

Co-authored-by: Nanguan Lin <[email protected]>
This commit is contained in:
Giteabot
2023-10-15 09:16:15 +08:00
committed by GitHub
co-authored by Nanguan Lin
parent 9d5aeb30c4
commit c599d2a203
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -26,7 +26,7 @@ This can be done by pushing to the branch followed by a specific refspec (a loca
The following example illustrates this:
```shell
git push origin HEAD:refs/for/master
git push origin HEAD:refs/for/main
```
The command has the following structure:
@@ -42,8 +42,8 @@ The command has the following structure:
- `description`: The PR description
- `force-push`: confirm force update the target branch
Here's another advanced example for creating a new PR targeting `master` with `topic`, `title`, and `description`:
Here's another advanced example for creating a new PR targeting `main` with `topic`, `title`, and `description`:
```shell
git push origin HEAD:refs/for/master -o topic="Topic of my PR" -o title="Title of the PR" -o description="# The PR Description\nThis can be **any** markdown content.\n- [x] Ok"
git push origin HEAD:refs/for/main -o topic="Topic of my PR" -o title="Title of the PR" -o description="# The PR Description\nThis can be **any** markdown content.\n- [x] Ok"
```