Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cosimo/fabric-vcs
Version control system abstraction for Fabric
https://github.com/cosimo/fabric-vcs
Last synced: 10 days ago
JSON representation
Version control system abstraction for Fabric
- Host: GitHub
- URL: https://github.com/cosimo/fabric-vcs
- Owner: cosimo
- Created: 2011-04-15T11:31:23.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-05-24T01:46:09.000Z (over 13 years ago)
- Last Synced: 2023-04-21T10:38:22.712Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
For a bit of background, see:
http://my.opera.com/cstrep/blog/2011/04/10/how-to-tag-a-remote-git-repository-or-vcs-support-for-fabric
Basic version control abstraction for Fabric.
If you don't know what Fabric is, go to http://www.fabfile.orgExample of things you can do:
vcs.list_tags(
repository_type = 'git',
repository_url = 'http://svn.server/project',
)or:
vcs.tag(
# Note: no 'trunk' or branches in the URL
repository_url = 'http://some.svn.server/svn/project',
repository_type = 'svn'
message = 'Some comment',
tag = 'tag-name',
)