loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Push option bonus for PTC docs (#23473)

Follow-up for #23458

I could have suggested this on the original PR, but I thought there
would be more to add. Hadn't noticed the push options docs already had
nearly the same shell command. 😅

Signed-off-by: jolheiser <john.olheiser@gmail.com>

authored by

John Olheiser and committed by
GitHub
6e75739c 991ab3b5

+6 -2
+1 -1
docs/content/doc/usage/push-options.en-us.md
··· 29 29 Example of changing a repository's visibility to public: 30 30 31 31 ```shell 32 - git push -o repo.private=false -u origin master 32 + git push -o repo.private=false -u origin main 33 33 ```
+1 -1
docs/content/doc/usage/push-options.zh-tw.md
··· 29 29 以下範例修改儲存庫的可見性為公開: 30 30 31 31 ```shell 32 - git push -o repo.private=false -u origin master 32 + git push -o repo.private=false -u origin main 33 33 ```
+4
docs/content/doc/usage/push-to-create.en-us.md
··· 34 34 ``` 35 35 36 36 This assumes you are using an SSH remote, but you can also use HTTPS remotes as well. 37 + 38 + ## Push options (bonus) 39 + 40 + Push-to-create will default to the visibility defined by `DEFAULT_PUSH_CREATE_PRIVATE` in `app.ini`. To explicitly set the visibility, you can use a [push option]({{< relref "doc/usage/push-options.en-us.md" >}}).