Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build
build
.DS_Store
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes will be documented here.

## [v2.0.0] - 2025-09-08

- upgrade gitopia version to v6.0.0 and gitopia-go version to v0.7.0
- automatic selection of storage provider with the least latency
- add liveness check for storage providers and remove gitserver host from default config
- handle lfs url config using inline configuration removing .lfsconfig dependency
- fix clone of lfs repositories
- minimal logging improvements and redirect git command stdout to stderr to avoid protocol issues
- pass current state of repository packfile in set branch and tag requests
- approve packfile update and lfs object updates in remote helper
- prevent duplicate git hooks calls inside remote helper and improve code to do single push instead of multiple push calls for each ref update
- git push request now goes to storage provider even for delete branch or tag operations

## [v1.10.0] - 2024-12-02

- upgrade gitopia version to v5.1.0
Expand Down
98 changes: 0 additions & 98 deletions cmd/git-gitopia/lfs/init.go

This file was deleted.

18 changes: 0 additions & 18 deletions cmd/git-gitopia/lfs/root.go

This file was deleted.

2 changes: 0 additions & 2 deletions cmd/git-gitopia/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package main

import (
"github.com/cosmos/cosmos-sdk/client/keys"
"github.com/gitopia/git-remote-gitopia/cmd/git-gitopia/lfs"
"github.com/gitopia/gitopia-go"
"github.com/spf13/cobra"
)
Expand All @@ -16,7 +15,6 @@ func RootCommand() *cobra.Command {
},
}
cmd.AddCommand(keys.Commands("."))
cmd.AddCommand(lfs.Commands())

return cmd
}
Loading
Loading