gitxl
v0.1.1
Published
A handy tool to help working with Git repositories.
Downloads
3
Readme
gitxl
A handy tool to help working with Git repositories.
Motivation
As working with complex Git repository structures (e.g. lot of dependencies between branches) can become very time consuming, I've decided to automatize complex operations with a tool based on a declarative configuration.
Features
- Updates the local (i.e. in your repository
.git
directory) list of Git remotes. - Apply merge dependency-chains between branches.
Example
HEAD Dependencies
Let's say that you have a Git repository with an extra Git remote named scaffold
which has a master
branch.
Locally, you'd like your own master
to stay up-to-date with scaffold
but also includes some of your own changes (e.g. a custom README.md
).
You've assumed the fact that your own master
branch will never be pulled on the scaffold
remote.
When a change occurs on the scaffold
upstream, it's necessary to merge again the branch you're depending on.
That's a job for gitxl! Let's add a .gitxlrc.yml
file at the root of our Git repository:
remotes:
scaffold: [email protected]:bbenoist/scaffold.git
depends:
- scaffold/master
Then, all we have to do is call the gitxl pull
command which will:
- Search and read a configuration file in the current working directory.
- Update the Git remotes with the entries listed in the configuration files and fetch them.
- Merge each branch listed in
depends
intoHEAD
(i.e. the currently checked out branch).
Branch Management
Take a Git repository with the following branches:
master
- The main release branch. This is where the official releases are committed.develop
- The main development branches. This is where the next release is being developed.feature/awesome
- A feature branch which will live as long as the feature is not ready fordevelop
.
By reading their description, we can see that these branches have dependencies between them: feature/awesome
depends on develop
which depends on `master.
When a change occurs, it's necessary to reapply the dependency-chain by merging each branch in the correct dependency order.
That's a job for gitxl! Let's add a .gitxlrc.yml
file at the root of our Git repository:
remotes:
scaffold: [email protected]:bbenoist/scaffold.git
branches:
master:
track: scaffold/master
develop:
track: scaffold/develop
merge:
- master
feature/awesome:
track: scaffold/feature/awesome
merge:
- develop
Then, all we have to do is call the gitxl apply-merge
command which will:
- Search and read a configuration file in the current working directory.
- Update the Git remotes with the entries listed in the configuration files and fetch them.
- Merge each branch listed in
branches
with the ref present in theirtrack
property. - Merge
merge
entries into each branch by respecting the dependency-chain.
Installation
npm
npm install -g gitxl
yarn
yarn global add gitxl
Git Clone
git clone https://github.com/bbenoist/gitxl.git
cd gitxl
npm link
Usage
To read an up-to-date command-line usage of gitxl, visit Command-Line Interface Documentation or call gitxl --help
.
Configuration
As the tool is based on cosmiconfig, gitxl configuration can be set using one of the following methods:
- a
gitxl
property at the root ofpackage.json
. - a JSON or YAML,
.gitxlrc
file. - a
.gitxlrc
file with the extensions .json, .yaml, .yml, or .js. - a
gitxl.config.js
CommonJS module.
Cosmiconfig continues to search up the directory tree, checking each of these places in each directory, until it finds some acceptable configuration (or hits the home directory).
Complete API reference for gitxl configuration files can be read at doc/config.schema.md
. Corresponding json-schema schemas can be seen at doc/config.schema.json
(release) or src/config.schema.json
(development).
Test
npm run test
Contribute
See CONTRIBUTING.md
for more information about our contributing guidelines.