vcs abstraction layer
Project description
libvcs - abstraction layer for vcs
a repo is an object representation of a vcs repository. it may or may not be checked out/cloned yet.
In [1]: from libvcs.shortcuts import create_repo_from_pip_url, create_repo
In [2]: r = create_repo(
url='https://www.github.com/tony/myrepo',
vcs='git',
repo_dir='/tmp/repo')
# or via pip-style URL
In [2]: r = create_repo_from_pip_url(
pip_url='git+https://www.github.com/tony/myrepo',
repo_dir='/tmp/repo',
name='myrepo')
In [3]: r.update_repo()
|myrepo| (git) Repo directory for myrepo (git) does not exist @ /tmp/myrepo
|myrepo| (git) Cloning.
|myrepo| (git) git clone https://www.github.com/tony/myrepo /tmp/myrepo
Cloning into '/tmp/myrepo'...
Checking connectivity... done.
|myrepo| (git) git fetch
|myrepo| (git) git pull
Already up-to-date.
More information
Python support |
Python 2.7, >= 3.3 |
VCS supported |
git(1), svn(1), hg(1) |
Source |
|
Docs |
|
Changelog |
|
API |
|
Issues |
|
Travis |
|
Test Coverage |
|
pypi |
|
Open Hub |
|
License |
BSD. |
git repo |
|
install dev |
|
tests |
|
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
libvcs-0.1.5.tar.gz
(17.4 kB
view details)
File details
Details for the file libvcs-0.1.5.tar.gz
.
File metadata
- Download URL: libvcs-0.1.5.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d97d66f9af72f3358dd86adea57a44a36d96c45e234561010be02b2a13516880 |
|
MD5 | 30badc5ba6632af9d22eafc7f7c3a864 |
|
BLAKE2b-256 | 636d3ffacfb9d525d026f99181bf1724e56c9e4ed08e74a04e49ddb17265ea58 |