Primary used for quickly navigating between git projects.
Supports - git projects, the GCD database is populated using the gcd-init/gcd-update commands. - non project folders, these can be added to the GCD database with gcd-add command. - aliases for git project and non git project folders can be set using the gcd-alias command.
Note: A git project folders is a folder that has a '.git' sub folder, no other checks are done.
Currently you need to build the binaries your self.
A working Rust build system https://www.rust-lang.org/tools/install.
Get the code from.
bash
git clone https://gitlab.com/pnmtjonahen/pepercoin.git
Build and install it.
bash
cargo install --path .
Once the console dependency is updated this will change in a normal cargo install
Install the binaries as described above.
Either copy the gcd script from the scripts folder into your ${HOME}/bin folder. (or equivalent, like ${HOME}/.cargo/bin)
Or create a gcd script as follows ```bash
SCRIPT_FILE="${HOME}/.gcd/gcd-cd.sh"
gcd-select $@
if [[ -f "${SCRIPTFILE}" ]]; then source ${SCRIPTFILE} rm ${SCRIPT_FILE} fi ```
And lastly, make an entry into your .bash_aliases file like:
alias gcd='source /home/ordina/bin/gcd'
Note: sourcing the shell script is needed else the internal 'cd' command will not work as expected.
Either copy the gcd.bat script from the scripts folder into your path folder. like ${APPDATA}/.cargo/bin
Or create a gcd script as follows
bat
@echo off
call gcd-select
if exist %APPDATA%\.gcd\gcd-cd.bat (
%APPDATA%\.gcd\gcd-cd.bat
del /s %APPDATA%\.gcd\gcd-cd.bat
)
after installation call the gcd init to initialize the database and perform the initial search for projects_dir
bash
gcd-init
gcd is made up out of a number of different applications. Gcd-select is the main one, it is however not called directly but via a shell script.