vcspull


Namevcspull JSON
Version 1.30.0 PyPI version JSON
download
home_pagehttps://vcspull.git-pull.com
SummaryManage and sync multiple git, mercurial, and svn repos
upload_time2024-03-24 21:45:19
maintainerNone
docs_urlNone
authorTony Narlock
requires_python<4.0,>=3.9
licenseMIT
keywords vcspull vcs git svn subversion hg mercurial manage manager sync fetcher updater json yaml
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # $ vcspull &middot; [![Python Package](https://img.shields.io/pypi/v/vcspull.svg)](https://pypi.org/project/vcspull/) [![License](https://img.shields.io/github/license/vcs-python/vcspull.svg)](https://github.com/vcs-python/vcspull/blob/master/LICENSE) [![Code Coverage](https://codecov.io/gh/vcs-python/vcspull/branch/master/graph/badge.svg)](https://codecov.io/gh/vcs-python/vcspull)

Manage and sync multiple git, svn, and mercurial repos via JSON or YAML file. Compare to
[myrepos], [mu-repo]. Built on [libvcs].

Great if you use the same repos at the same locations across multiple
machines or want to clone / update a pattern of repos without having to
`cd` into each one.

- clone / update to the latest repos with `$ vcspull`
- use filters to specify a location, repo url or pattern in the
  manifest to clone / update
- supports svn, git, hg version control systems
- automatically checkout fresh repositories
- supports [pip](https://pip.pypa.io/)-style URL's
  ([RFC3986](https://datatracker.ietf.org/doc/html/rfc3986)-based [url
  scheme](https://pip.pypa.io/en/latest/topics/vcs-support/))

See the [documentation](https://vcspull.git-pull.com/), [configuration](https://vcspull.git-pull.com/configuration/) examples, and [config generators](https://vcspull.git-pull.com/configuration/generation.html).

[myrepos]: http://myrepos.branchable.com/
[mu-repo]: http://fabioz.github.io/mu-repo/

# How to

## Install

```console
$ pip install --user vcspull
```

### Developmental releases

You can test the unpublished version of vcspull before its released.

- [pip](https://pip.pypa.io/en/stable/):

  ```console
  $ pip install --user --upgrade --pre vcspull
  ```

- [pipx](https://pypa.github.io/pipx/docs/):

  ```console
  $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force
  ```

  Then use `vcspull@next sync [config]...`.

## Configuration

Add your repos to `~/.vcspull.yaml`.

_vcspull does not currently scan for repos on your system, but it may in
the future_

```yaml
~/code/:
  flask: "git+https://github.com/mitsuhiko/flask.git"
~/study/c:
  awesome: "git+git://git.naquadah.org/awesome.git"
~/study/data-structures-algorithms/c:
  libds: "git+https://github.com/zhemao/libds.git"
  algoxy:
    repo: "git+https://github.com/liuxinyu95/AlgoXY.git"
    remotes:
      tony: "git+ssh://git@github.com/tony/AlgoXY.git"
```

(see the author's
[.vcspull.yaml](https://github.com/tony/.dot-config/blob/master/.vcspull.yaml),
more [configuration](https://vcspull.git-pull.com/configuration.html))

`$HOME/.vcspull.yaml` and `$XDG_CONFIG_HOME/vcspull/` (`~/.config/vcspull`) can
be used as a declarative manifest to clone you repos consistently across
machines. Subsequent syncs of nitialized repos will fetch the latest commits.

## Sync your repos

```console
$ vcspull sync
```

Keep nested VCS repositories updated too, lets say you have a mercurial
or svn project with a git dependency:

`external_deps.yaml` in your project root (any filename will do):

```yaml
./vendor/:
  sdl2pp: "git+https://github.com/libSDL2pp/libSDL2pp.git"
```

Clone / update repos via config file:

```console
$ vcspull sync -c external_deps.yaml '*'
```

See the [Quickstart](https://vcspull.git-pull.com/quickstart.html) for
more.

## Pulling specific repos

Have a lot of repos?

you can choose to update only select repos through
[fnmatch](http://pubs.opengroup.org/onlinepubs/009695399/functions/fnmatch.html)
patterns. remember to add the repos to your `~/.vcspull.{json,yaml}`
first.

The patterns can be filtered by by directory, repo name or vcs url.

Any repo starting with "fla":

```console
$ vcspull sync "fla*"
```

Any repo with django in the name:

```console
$ vcspull sync "*django*"
```

Search by vcs + url, since urls are in this format <vcs>+<protocol>://<url>:

```console
$ vcspull sync "git+*"
```

Any git repo with python in the vcspull:

```console
$ vcspull sync "git+*python*
```

Any git repo with django in the vcs url:

```console
$ vcspull sync "git+*django*"
```

All repositories in your ~/code directory:

```console
$ vcspull sync "$HOME/code/*"
```

[libvcs]: https://github.com/vcs-python/libvcs

<img src="https://raw.githubusercontent.com/vcs-python/vcspull/master/docs/_static/vcspull-demo.gif" class="align-center" style="width:45.0%" alt="image" />

# Donations

Your donations fund development of new features, testing and support.
Your money will go directly to maintenance and development of the
project. If you are an individual, feel free to give whatever feels
right for the value you get out of the project.

See donation options at <https://git-pull.com/support.html>.

# More information

- Python support: >= 3.9, pypy
- VCS supported: git(1), svn(1), hg(1)
- Source: <https://github.com/vcs-python/vcspull>
- Docs: <https://vcspull.git-pull.com>
- Changelog: <https://vcspull.git-pull.com/history.html>
- API: <https://vcspull.git-pull.com/api.html>
- Issues: <https://github.com/vcs-python/vcspull/issues>
- Test Coverage: <https://codecov.io/gh/vcs-python/vcspull>
- pypi: <https://pypi.python.org/pypi/vcspull>
- Open Hub: <https://www.openhub.net/p/vcspull>
- License: [MIT](https://opensource.org/licenses/MIT).

[![Docs](https://github.com/vcs-python/vcspull/workflows/docs/badge.svg)](https://vcspull.git-pull.com) [![Build Status](https://github.com/vcs-python/vcspull/workflows/tests/badge.svg)](https://github.com/vcs-python/vcspull/actions?query=workflow%3A%22tests%22)


            

Raw data

            {
    "_id": null,
    "home_page": "https://vcspull.git-pull.com",
    "name": "vcspull",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.9",
    "maintainer_email": null,
    "keywords": "vcspull, vcs, git, svn, subversion, hg, mercurial, manage, manager, sync, fetcher, updater, json, yaml",
    "author": "Tony Narlock",
    "author_email": "tony@git-pull.com",
    "download_url": "https://files.pythonhosted.org/packages/a9/39/20d0f091ee408f9f83e44a58731cde3b0009bc7a30ce1e2f2d78af4b8518/vcspull-1.30.0.tar.gz",
    "platform": null,
    "description": "# $ vcspull &middot; [![Python Package](https://img.shields.io/pypi/v/vcspull.svg)](https://pypi.org/project/vcspull/) [![License](https://img.shields.io/github/license/vcs-python/vcspull.svg)](https://github.com/vcs-python/vcspull/blob/master/LICENSE) [![Code Coverage](https://codecov.io/gh/vcs-python/vcspull/branch/master/graph/badge.svg)](https://codecov.io/gh/vcs-python/vcspull)\n\nManage and sync multiple git, svn, and mercurial repos via JSON or YAML file. Compare to\n[myrepos], [mu-repo]. Built on [libvcs].\n\nGreat if you use the same repos at the same locations across multiple\nmachines or want to clone / update a pattern of repos without having to\n`cd` into each one.\n\n- clone / update to the latest repos with `$ vcspull`\n- use filters to specify a location, repo url or pattern in the\n  manifest to clone / update\n- supports svn, git, hg version control systems\n- automatically checkout fresh repositories\n- supports [pip](https://pip.pypa.io/)-style URL's\n  ([RFC3986](https://datatracker.ietf.org/doc/html/rfc3986)-based [url\n  scheme](https://pip.pypa.io/en/latest/topics/vcs-support/))\n\nSee the [documentation](https://vcspull.git-pull.com/), [configuration](https://vcspull.git-pull.com/configuration/) examples, and [config generators](https://vcspull.git-pull.com/configuration/generation.html).\n\n[myrepos]: http://myrepos.branchable.com/\n[mu-repo]: http://fabioz.github.io/mu-repo/\n\n# How to\n\n## Install\n\n```console\n$ pip install --user vcspull\n```\n\n### Developmental releases\n\nYou can test the unpublished version of vcspull before its released.\n\n- [pip](https://pip.pypa.io/en/stable/):\n\n  ```console\n  $ pip install --user --upgrade --pre vcspull\n  ```\n\n- [pipx](https://pypa.github.io/pipx/docs/):\n\n  ```console\n  $ pipx install --suffix=@next 'vcspull' --pip-args '\\--pre' --force\n  ```\n\n  Then use `vcspull@next sync [config]...`.\n\n## Configuration\n\nAdd your repos to `~/.vcspull.yaml`.\n\n_vcspull does not currently scan for repos on your system, but it may in\nthe future_\n\n```yaml\n~/code/:\n  flask: \"git+https://github.com/mitsuhiko/flask.git\"\n~/study/c:\n  awesome: \"git+git://git.naquadah.org/awesome.git\"\n~/study/data-structures-algorithms/c:\n  libds: \"git+https://github.com/zhemao/libds.git\"\n  algoxy:\n    repo: \"git+https://github.com/liuxinyu95/AlgoXY.git\"\n    remotes:\n      tony: \"git+ssh://git@github.com/tony/AlgoXY.git\"\n```\n\n(see the author's\n[.vcspull.yaml](https://github.com/tony/.dot-config/blob/master/.vcspull.yaml),\nmore [configuration](https://vcspull.git-pull.com/configuration.html))\n\n`$HOME/.vcspull.yaml` and `$XDG_CONFIG_HOME/vcspull/` (`~/.config/vcspull`) can\nbe used as a declarative manifest to clone you repos consistently across\nmachines. Subsequent syncs of nitialized repos will fetch the latest commits.\n\n## Sync your repos\n\n```console\n$ vcspull sync\n```\n\nKeep nested VCS repositories updated too, lets say you have a mercurial\nor svn project with a git dependency:\n\n`external_deps.yaml` in your project root (any filename will do):\n\n```yaml\n./vendor/:\n  sdl2pp: \"git+https://github.com/libSDL2pp/libSDL2pp.git\"\n```\n\nClone / update repos via config file:\n\n```console\n$ vcspull sync -c external_deps.yaml '*'\n```\n\nSee the [Quickstart](https://vcspull.git-pull.com/quickstart.html) for\nmore.\n\n## Pulling specific repos\n\nHave a lot of repos?\n\nyou can choose to update only select repos through\n[fnmatch](http://pubs.opengroup.org/onlinepubs/009695399/functions/fnmatch.html)\npatterns. remember to add the repos to your `~/.vcspull.{json,yaml}`\nfirst.\n\nThe patterns can be filtered by by directory, repo name or vcs url.\n\nAny repo starting with \"fla\":\n\n```console\n$ vcspull sync \"fla*\"\n```\n\nAny repo with django in the name:\n\n```console\n$ vcspull sync \"*django*\"\n```\n\nSearch by vcs + url, since urls are in this format <vcs>+<protocol>://<url>:\n\n```console\n$ vcspull sync \"git+*\"\n```\n\nAny git repo with python in the vcspull:\n\n```console\n$ vcspull sync \"git+*python*\n```\n\nAny git repo with django in the vcs url:\n\n```console\n$ vcspull sync \"git+*django*\"\n```\n\nAll repositories in your ~/code directory:\n\n```console\n$ vcspull sync \"$HOME/code/*\"\n```\n\n[libvcs]: https://github.com/vcs-python/libvcs\n\n<img src=\"https://raw.githubusercontent.com/vcs-python/vcspull/master/docs/_static/vcspull-demo.gif\" class=\"align-center\" style=\"width:45.0%\" alt=\"image\" />\n\n# Donations\n\nYour donations fund development of new features, testing and support.\nYour money will go directly to maintenance and development of the\nproject. If you are an individual, feel free to give whatever feels\nright for the value you get out of the project.\n\nSee donation options at <https://git-pull.com/support.html>.\n\n# More information\n\n- Python support: >= 3.9, pypy\n- VCS supported: git(1), svn(1), hg(1)\n- Source: <https://github.com/vcs-python/vcspull>\n- Docs: <https://vcspull.git-pull.com>\n- Changelog: <https://vcspull.git-pull.com/history.html>\n- API: <https://vcspull.git-pull.com/api.html>\n- Issues: <https://github.com/vcs-python/vcspull/issues>\n- Test Coverage: <https://codecov.io/gh/vcs-python/vcspull>\n- pypi: <https://pypi.python.org/pypi/vcspull>\n- Open Hub: <https://www.openhub.net/p/vcspull>\n- License: [MIT](https://opensource.org/licenses/MIT).\n\n[![Docs](https://github.com/vcs-python/vcspull/workflows/docs/badge.svg)](https://vcspull.git-pull.com) [![Build Status](https://github.com/vcs-python/vcspull/workflows/tests/badge.svg)](https://github.com/vcs-python/vcspull/actions?query=workflow%3A%22tests%22)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Manage and sync multiple git, mercurial, and svn repos",
    "version": "1.30.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/vcs-python/vcspull/issues",
        "Changes": "https://github.com/vcs-python/vcspull/blob/master/CHANGES",
        "Documentation": "https://vcspull.git-pull.com",
        "Homepage": "https://vcspull.git-pull.com",
        "Repository": "https://github.com/vcs-python/vcspull"
    },
    "split_keywords": [
        "vcspull",
        " vcs",
        " git",
        " svn",
        " subversion",
        " hg",
        " mercurial",
        " manage",
        " manager",
        " sync",
        " fetcher",
        " updater",
        " json",
        " yaml"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4455684bcbdcce11ce99a74ac066dc24e18ad4f6be051b528b537bf6f5310ad",
                "md5": "8833c7e0084f6057d905f8a3138e3b2e",
                "sha256": "792029304f22016840cc247c0c74b3ec5b3591194131a2eaea840ba6887d0c53"
            },
            "downloads": -1,
            "filename": "vcspull-1.30.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8833c7e0084f6057d905f8a3138e3b2e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 17168,
            "upload_time": "2024-03-24T21:45:12",
            "upload_time_iso_8601": "2024-03-24T21:45:12.902148Z",
            "url": "https://files.pythonhosted.org/packages/b4/45/5684bcbdcce11ce99a74ac066dc24e18ad4f6be051b528b537bf6f5310ad/vcspull-1.30.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a93920d0f091ee408f9f83e44a58731cde3b0009bc7a30ce1e2f2d78af4b8518",
                "md5": "46d150489ace645ea9332ca56ed31b65",
                "sha256": "f7493afde3129e4c1efbc1089590282fece3f1a91e751b50cc2775d5db4ea2be"
            },
            "downloads": -1,
            "filename": "vcspull-1.30.0.tar.gz",
            "has_sig": false,
            "md5_digest": "46d150489ace645ea9332ca56ed31b65",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 2097489,
            "upload_time": "2024-03-24T21:45:19",
            "upload_time_iso_8601": "2024-03-24T21:45:19.611486Z",
            "url": "https://files.pythonhosted.org/packages/a9/39/20d0f091ee408f9f83e44a58731cde3b0009bc7a30ce1e2f2d78af4b8518/vcspull-1.30.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-24 21:45:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "vcs-python",
    "github_project": "vcspull",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "vcspull"
}
        
Elapsed time: 0.21128s