Giter Club home page Giter Club logo

git-mob's Introduction

git mob

CLI app to help you automatically add Co-authored-by trailers to git commits during pair/mob programming

crates.io license build status codecov

You can attribute a git commit to more than one author by adding one or more Co-authored-by trailers to the commit's message. Co-authored commits are visible on GitHub. For more information, see here.

This CLI app will help you add them automatically and also help you store and manage co-authors for pair/mob programming sessions.

Features

  • Cross-platform
  • Co-authors management via CLI
  • Multi-select menu to choose co-author(s) for mobbing
  • Automatic appending of Co-authored-by trailers to commit
  • No need of any git aliases

Installation

Prerequisites

With Binary Package

  • Download and extract the appropriate binary depending on your OS from the latest GitHub release

  • Ensure the binary is in your PATH variable e.g. you may place the file in C:\Windows on Windows or /usr/local/bin on Linux and macOS

  • Ensure the binary is set as executable (Linux and macOS)

    $ chmod +x ./git-mob

With Cargo

$ cargo install git-mob-tool

Setup & Configuration

  • Set up a global prepare-commit-msg githook which appends the Co-authored-by trailers to the commit message.

    $ git mob setup --global

    If a repository overrides core.hooksPath git configuration variable (e.g when using husky), then you will additionally need to run git mob setup --local for each such repository. This will set up a local (repository-specific) prepare-commit-msg githook which invokes the global one.

    If you prefer to set this up manually or encounter any issues with the automated setup process, you can follow steps outlined here.

  • Store your team members' details with keys

    $ git mob coauthor --add lm "Leo Messi" [email protected]
    $ git mob coauthor --add em "Emi Martinez" [email protected]
    $ git mob coauthor --add sa "Sergio Aguero" [email protected]

Usage

  • To mob with some team member(s):

    $ git mob --with
    ? Select active co-author(s):
    > [ ] Leo Messi <[email protected]>
      [ ] Emi Martinez <[email protected]>
      [ ] Sergio Aguero <[email protected]>
    [↑↓ to move, space to select one, → to all, ← to none, type to filter ]

    Alternatively, if you remember the co-author keys, you may bypass the multi-select menu by running:

    $ git mob --with lm em

    This will start a global mob session. Any git commit made afterwards will have Co-authored-by trailers added to the commit message as shown below:

    This is an example commit message
    
    Co-authored-by: Leo Messi <[email protected]>
    Co-authored-by: Emi Martinez <[email protected]>
    
  • To clear the mob session:

    $ git mob --clear
  • To view the co-authors in the current mob session:

    $ git mob --list
  • To print help information:

    $ git mob help
    $ git mob help coauthor

Troubleshooting

  • When using git mob --help, an error may occur because Git looks for man pages for subcommands. To avoid this error, use one of the following alternatives:
    • git mob help
    • git-mob --help

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.