/gitpull

Cli tool to update/pull from a list of repos.

Primary LanguageRust

Repos

Command line tool written in Rust as a learning project.
A program to manage and pull from a list of git repositories.

Usage

repos -a .              # Adds current directory to list.

repos -a /path/to/repo  # Adds repo to list.

repos -r "some_repo"    # Removes repo from the list.

repos -p "some_repo"    # Pull the specified repo in list.

repos --pull-all        # Pulls from all repos in list.
repos -x                # Pulls from all repos in list.

repos -l                # List repos stored in list.

Todo:

  • Add colour to output (green for success, red for error)