Manages multiple git repositories
Project description
A script that can handle multiple Git repositories locally. Written in Python, supports version 3.5 and upwards.
Installation
Make sure python is installed, then run
# install from a clone of the repository
python setup.py install
or
# install from PyPi
pip install git_manager
to install the package. This will make it available by running
git-manager
(or git manager
).
Configuration
Git Manager can be configured through its configuration file. In order, it looks for the configuration file in the following locations:
$GIT_MANAGER_CONFIG
(if set)~/.config/.gitmanager/config
(or$XDG_CONFIG_HOME/.gitmanager/config
if set)~/.gitmanager
The configuration file is parsed line-by-line and declares which repositories are under GitManager control. It consists of three different types of directives:
Root Line Configure the root folder to clone repositories to automatically. Starts with two hashes, then sets the folder relative to the users home directory. For example:
## /opt/repositories
Comments Anything starting with a “#” will be treated as a comment. The same goes for empty (or whitespace-only) lines.
Repository instruction To declare a repository write
REPOSITORY_URL [FOLDER]
. This declares that the repository from REPOSITORY_URL should be cloned into the folder FOLDER. In case the folder is omitted, the ‘humanish’ part of the URI will be taken automatically. All folder paths by default are relative to the users home folder, but this can be changed with the instruction below. Example:# makes the git/git repository available locally # in the folder ~/Projects/git https://github.com/git/git Projects/git # makes the GitManager repository available # in the folder ~/GitManager https://github.com/tkw1536/GitManager
Group Instruction In the case where multiple repositories should be cloned into the same folder, it is inconvenient to always give the full path to that folder in the configuration file. For this reason GitManager supports the concept of a group. A group can be started by prefixing a line with the “>” character. A group takes one argument. A path to a folder all repositories should be cloned into. This is best illustrated in the form of an example:
# We can create a group to store all our atom-related projects. # All repositories are automatically available in the ~/AtomProjects # folder. > AtomProjects https://github.com/atom/atom https://github.com/atom/markdown-preview # makes the GitManager repository available # in the folder ~/GitManager https://github.com/tkw1536/GitManager
Groups completely support nesting. A sub-groups path and pattern for origin are relative to the parent group. To create a sub-group, add another “>” character in front of the line.
An example configuration file can be found in the file config_example.
Installing Repositories Locally
Setup
Use git-manager setup [pattern]
to clone repositories in the config file to the local disk.
Use the optional pattern argument to restrict the reposiories to install.
Clone
Use git-manager clone [--save] url
to automatically clone a repository into a location determined by the URL.
Use the --save
flag to automatically update the config file.
Reconfigure
Use git-manager reconfigure
to automatically add repositories found in folder and it’s subdirectories to the configuration file.
Viewing Local Repositories
List
Use git-manager ls [pattern]
to list local repositories.
Use the optional pattern argument to restrict the repositories to list.
Status
Use git-manager status [pattern]
to show the status of local repositories.
Use the optional pattern argument to restrict the repositories to check.
State
Use git-manager state [pattern]
to compare local repositories with their remote counterpart.
Use the optional pattern argument to restrict the repositories to check.
Updating Local Repositories
Pull
Use git-manager pull [pattern]
to run git pull
on all repositories installed locally.
Use the optional pattern argument to restrict the repositories to pull.
Fetch
Use git-manager fetch [pattern] [args...]
to run git fetch
on all repositories installed locally.
Use the optional pattern argument to restrict the repositories to fetch.
Use the optional remaining arguments to pass further arguments to the fetch command.
Push
Use git-manager push [pattern]
to run git push
on all repositories installed locally.
Use the optional pattern argument to restrict the repositories to pull.
GC
Use git-manager gc [pattern] [args...]
to run git gc
on all repositories installed locally.
Use the optional pattern argument to restrict the repositories to garbage collect.
Use the optional remaining arguments to pass further arguments to the gc command.
Repository Patterns
Some commands optionally accept the pattern
argument. This can be
used to filter repository by their name.
Repository patterns are simple glob-like pattern matches on standardized remote URLs. They can also be normal glob patterns on full URLs.
For example:
Pattern |
Examples |
---|---|
|
|
|
|
|
|
|
|
|
|
Development and Testing
This project is unit tested with a high coverage rate. The tests can be run with:
nosetests --with-coverage --cover-package GitManager
Tests are automatically run on Travis CI after every commit.
License
The MIT License (MIT) Copyright (c) 2016-18 Tom Wiesing Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
Built Distribution
File details
Details for the file git_manager-0.2.0.tar.gz
.
File metadata
- Download URL: git_manager-0.2.0.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13873592d4b82823896b04e7ca6db6afaa7b0e2c56cf9c98667117f7b8c2ba11 |
|
MD5 | 0df77451ac1415a2ba8e09ca4494a38a |
|
BLAKE2b-256 | 97876485d70309f1ddca91735b9372e3d66173e7ceb2e1b86d358aa6925fce2e |
File details
Details for the file git_manager-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: git_manager-0.2.0-py3-none-any.whl
- Upload date:
- Size: 32.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65adf712b1248661d82d0363ca5e8b1b9e0743b292922df81636ae814583310c |
|
MD5 | 038f61be0820a50b32d0a5b01168a848 |
|
BLAKE2b-256 | 94af39cdddec137c2769cd4285d718c5595eb43f27530bc74fdcbdd5bc8cf200 |