Skip to content

Code0x58/gitlab-sync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI version Build Status

gitlab-sync

This provides the gitlab-sync tool which clones GitLab and updates repositories.

Config

You will need to have SSH access configured for GitLab, and have created a personal access token with API access.

The config goes in ~/.config/gitlab-sync.toml or ~/.gitlab-sync.toml, which is TOML.

["~/team-x"]
access-token = "9koXpg98eAheJpvBs5tK"
# you can see the paths of groups from the URL on GitLab
paths = [ "path/to/team-x" ]
# strip the common prefix from the given path
strip-path = true
strategy = "mirror"

["~/gitlab"]
# get the gitlab access token from running a command
access-token = ["pass", "GitLab/api-access-token"]

# paths to clone from GitLab, can include slashes for groups/projects
paths = [ "mintel", "obristow" ]
strategy = "mirror"

Usage

$ gitlab-sync local-update

Strategies

You have to define a strategy for each local copy you define in config, the strategy defines what will happen when gitlab-sync runs over the given copy.

mirror

  1. delete repositories which no longer exist remotely
  2. move repositories which have been moved remotely
  3. update local repositories
  4. clean local repositories (prune+gc)
  5. clone new repositories

This is good for having a local copy which you can use to perform searches in using something like ag.

The local copies should not be modified by users.

To do

  • flesh out integration tests
  • cater for new repositories being made locally and pushed remotely
  • compare (toasted-)marshmallow as a replacement for attr+voluptious - marshmallow uses attr

About

clone and manage a copy of all projects for an organisation in GitLab

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages