forked from forgejo/forgejo
Add basic repository lfs management (#7199)
This PR adds basic repository LFS management UI including the ability to find all possible pointers within the repository. Locks are not managed at present but would be addable through some simple additions. * Add basic repository lfs management * add auto-associate function * Add functionality to find commits with this lfs file * Add link to find commits on the lfs file view * Adjust commit view to state the likely branch causing the commit * Only read Oid from database
This commit is contained in:
parent
af8957bc4c
commit
5e6a008fba
20 changed files with 1151 additions and 137 deletions
|
@ -1378,6 +1378,21 @@ settings.unarchive.text = Un-Archiving the repo will restore its ability to rece
|
|||
settings.unarchive.success = The repo was successfully un-archived.
|
||||
settings.unarchive.error = An error occurred while trying to un-archive the repo. See the log for more details.
|
||||
settings.update_avatar_success = The repository avatar has been updated.
|
||||
settings.lfs=LFS
|
||||
settings.lfs_filelist=LFS files stored in this repository
|
||||
settings.lfs_no_lfs_files=No LFS files stored in this repository
|
||||
settings.lfs_findcommits=Find commits
|
||||
settings.lfs_lfs_file_no_commits=No Commits found for this LFS file
|
||||
settings.lfs_delete=Delete LFS file with OID %s
|
||||
settings.lfs_delete_warning=Deleting an LFS file may cause 'object does not exist' errors on checkout. Are you sure?
|
||||
settings.lfs_findpointerfiles=Find pointer files
|
||||
settings.lfs_pointers.found=Found %d blob pointer(s) - %d associated, %d unassociated (%d missing from store)
|
||||
settings.lfs_pointers.sha=Blob SHA
|
||||
settings.lfs_pointers.oid=OID
|
||||
settings.lfs_pointers.inRepo=In Repo
|
||||
settings.lfs_pointers.exists=Exists in store
|
||||
settings.lfs_pointers.accessible=Accessible to User
|
||||
settings.lfs_pointers.associateAccessible=Associate accessible %d OIDs
|
||||
|
||||
diff.browse_source = Browse Source
|
||||
diff.parent = parent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue