CaiCandong

Results 8 comments of CaiCandong

This change affects the subscriptions endpoint. I am waiting for the PR, then to adjust the #26797

> Which one will go first this pr or #26797

> Correct me if I'm wrong, but it looks like your PR is about wtaching Issues, but this PR is about watching Repos, so they don't touch the same codebase....

https://github.com/go-gitea/gitea/blob/7047df36d4c39fefa6464b713c66302aa0038123/models/organization/team_list.go#L100-L108 There are no `page` and `limit` queries in the implement

https://github.com/go-gitea/gitea/assets/50507092/00abebdb-5ad3-4775-87d5-b71f4f84dbed ~~I pulled it down and tested it, and as if this PR wasn't already done?~~ ![image](https://github.com/go-gitea/gitea/assets/50507092/02ac69d3-1f9d-4f5d-88e4-0779d01769b1) ~~The contents of the dropdown box are also empty~~ I apologize for pulling...

I repeated the steps you provided above on github: - `git push origin pr1:pull/1/head` ![image](https://github.com/go-gitea/gitea/assets/50507092/e9c9bbbb-4d7a-4673-a969-a8ee0bf89486) but it creates a new branch rather than modifying the `pull/1` ![image](https://github.com/go-gitea/gitea/assets/50507092/7da6ff2c-4185-4ef1-af33-cb78645fb34a) - `git push...

> So i need to `git remote add bob https://example.com/bob/crm`, and git push to bob dev branch? Right

``` git remote add bob https://example.com/bob/crm.git git fetch bob dev1 git checkout dev1 fix & add &commit git push bob dev1 ``` Work directly on the bob's repo, not the...