aboutsummaryrefslogtreecommitdiffstats
path: root/modules/gitrepo
Commit message (Collapse)AuthorAgeFilesLines
* Refactor Branch struct in package modules/git (#33980)Lunny Xiao2 days1-2/+2
| | | | The `Branch` struct in `modules/git` package is unnecessary. We can just use a `string` to represent a branch
* Don't create duplicated functions for code repositories and wiki ↵Lunny Xiao2025-03-193-45/+11
| | | | | | | | | | repositories (#33924) Fix https://github.com/go-gitea/gitea/pull/33910#pullrequestreview-2688913865 This PR changed the Repositroy interface in `gitrepo` package which makes it only focus the relative path in the disk and abstract whether it's a wiki repository or not.
* Move hooks function to gitrepo and reduce expose repopath (#33890)Lunny Xiao2025-03-161-0/+250
| | | | Extract from #28966 Follow #33874
* Move git references checking to gitrepo packages to reduce expose of ↵Lunny Xiao2025-03-152-0/+33
| | | | repository path (#33891)
* Add abstraction layer to delete repository from disk (#33879)Lunny Xiao2025-03-141-1/+20
| | | | Extract from #28966 Follow #33874
* Add abstraction layer to check if the repository exists on disk (#33874)Lunny Xiao2025-03-141-0/+5
| | | | | | | | | | Extract from #28966 This PR uses `gitrepo.IsRepositoryExist` instead of `util.IsExist` to detect whether the repository exist in disk. This will move `RepoPath` detail behind of package `gitrepo` to make it easier to do possible changes where storing the repositories. No code change
* Remove context from git struct (#33793)TheFox0x72025-03-041-3/+3
| | | | Argument is moved from struct init in command run, which lets us remove context from struct.
* [Feature] Private README.md for organization (#32872)Chai-Shi2024-12-311-8/+9
| | | | | | | | Implemented #29503 --------- Co-authored-by: Ben Chang <ben_chang@htc.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Refactor request context (#32956)wxiaoguang2024-12-242-56/+22
| | | | | | | | | | | Introduce RequestContext: is a short-lived context that is used to store request-specific data. RequestContext could be used to clean form tmp files, close context git repo, and do some tracing in the future. Then a lot of legacy code could be removed or improved. For example: most `ctx.Repo.GitRepo.Close()` could be removed because the git repo could be closed when the request is done.
* Refactor markup package (#32399)wxiaoguang2024-11-041-6/+3
| | | | | | To make the markup package easier to maintain: 1. Split some go files into small files 2. Use a shared util.NopCloser, remove duplicate code 3. Remove unused functions
* Use repo as of renderctx's member rather than a repoPath on metas (#29222)Lunny Xiao2024-05-301-0/+8
| | | | Use a `gitrepo.Repository` in the markup's RenderContext but not store the repository's path.
* Move get/set default branch from git package to gitrepo package to hide ↵Lunny Xiao2024-03-081-0/+17
| | | | repopath (#29126)
* Simplify how git repositories are opened (#28937)Lunny Xiao2024-01-274-0/+192
## Purpose This is a refactor toward building an abstraction over managing git repositories. Afterwards, it does not matter anymore if they are stored on the local disk or somewhere remote. ## What this PR changes We used `git.OpenRepository` everywhere previously. Now, we should split them into two distinct functions: Firstly, there are temporary repositories which do not change: ```go git.OpenRepository(ctx, diskPath) ``` Gitea managed repositories having a record in the database in the `repository` table are moved into the new package `gitrepo`: ```go gitrepo.OpenRepository(ctx, repo_model.Repo) ``` Why is `repo_model.Repository` the second parameter instead of file path? Because then we can easily adapt our repository storage strategy. The repositories can be stored locally, however, they could just as well be stored on a remote server. ## Further changes in other PRs - A Git Command wrapper on package `gitrepo` could be created. i.e. `NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir: repo.RepoPath()}`, the directory should be empty before invoking this method and it can be filled in the function only. #28940 - Remove the `RepoPath()`/`WikiPath()` functions to reduce the possibility of mistakes. --------- Co-authored-by: delvh <dev.lh@web.de>