Project

jgit

0.01
No commit activity in last 3 years
No release in over 3 years
Jgit is a tool to help you manage multiple separate git-base project in local file system.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.10
~> 5.8.0
~> 10.0

Runtime

~> 0
 Project Readme

jgit

Codacy Badge Gem Version Build Status Code Climate

jgit is a command line tool to help you manage multiple separate git base project in local file system. You can execute command all at once like jgit status jgit fetch jgit pull or any other command you want.

Installation

Just install it by gem:

$ sudo gem install jgit

Usage

The most commonly used command:

$ jgit add <path> <name> [-g GROUP]              # add new project
$ jgit list [-g GROUP]                           # list all projects, alias: ls
$ jgit remove <name> [-g GROUP]                  # remove project, alias: rm
$ jgit group [COMMAND]                           # group management
$ jgit chgrp <name>                              # change default group
$ jgit rename <name> <new_name> [-g GROUP]       # rename project, alias: rn

You can use same command like git:

$ jgit commit [-g GROUP] [-p PROJECT]            # git commit on given project, alias: co
$ jgit fetch [-g GROUP] [-p PROJECT]             # git fetch on given project
$ jgit pull [-g GROUP] [-p PROJECT]              # git pull on given project
$ jgit push [-g GROUP] [-p PROJECT]              # git push on given project
$ jgit status [-g GROUP] [-p PROJECT]            # git status on given project, alias: st

Or direct exec command:

$ jgit exe <command...> [-g GROUP] [-p PROJECT]  # exec command on given project

See jgit help or jgit help <command> for more information.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Jintin/jgit.

License

The gem is available as open source under the terms of the MIT License.