git-cd

A terminal tool for easy navigation to local git repository


Keywords
git, terminal, terminal-based
License
MIT
Install
pip install git-cd==0.0.1

Documentation

git-cd

GitHub Workflow Status GitHub release PyPI PyPI - Downloads PyPI - Python Version Licence

A terminal tool for easy navigation to local git repository. It let you change to a repository directory easily.

Table of content

Installation

Install with pip

$ pip3 install git-cd

Usage

Type gitcd or gitcd -h will show you the command help page

$ gitcd
Usage: gitcd [OPTIONS] [REPO]

  gitcd [your-repo-name]

  Terminal tool for easy navigation to local git repository

  For more detail: please visit https://github.com/Doma1204/gitcd

Options:
  -i, --index             index all the local repo
  -u, --update            update the local repo index
  -p, --path PATH         only find local repo under this path
  -a, --autocomplete      activate shell autocompletion
  -s, --shell [bash|zsh]  specify the shell
  -h, --help              Show this message and exit.

Change Directory

$ gitcd [repo-name]

It changes the current directory to the corresponding local repository. Press Tab to autocomplete the repository name if needed(activate autocompletion is required)

Indexing Local Repositories

Before using gitcd to change directory, you needs to first index you local repositories. Use the commmand below to start indexing.

$ gitcd -i

The default root directory is home directory(~/). It starts finding local repositories recursively from the root directory. You can change the root directory by using -p.

$ gitcd -i -p [root-path]

Update Local Repository Index

If some of the repositories have been deleted, the old index will still contain those invalid repositories directory, and errors occur when you attemps to cd into deleted repositories. Thus, you needs to update the local repository index by the following command. It deletes all invalid repositories.

$ gitcd -u

Autocompletion

Limited by Click, autocompletion only support bash and zsh shell. To activate autocompletion, use the command below:

$ gitcd -a

In normal cases, it detects the current shell and activate the autocompletion of that shell, but you can specify the shell that you wants to activate by using -s.

$ gitcd -a -s [bash or zsh]

To actiavte autocompletion manually, you needs to add the following line to you .bashrc(bash) or .zshrc(zsh).

For bash: eval "$(_GITCD_COMPLETE=source gitcd)"

For zsh: eval "$(_GITCD_COMPLETE=source_zsh gitcd)"

Dependencies

The tool is built on top of Click.

Licence

MIT Licence