This is a TUI (Terminal User Interface) app designed to simplify your daily commit process.
To build locally, you'll need to clone this repository by running:
git clone https://github.com/audreyteles/githp.gitNext, install Go on your machine. To see how to install it, click here.
In the terminal, access the githp folder, and then you should be able to build:
cd githp && go build -o githp cmd/main.goA file named githp will be created in your directory.
Once the app is on your machine, you need to give it executable permissions:
sudo chmod +x githpNext, move the app to your local binary folder:
mv githp /usr/local/bin/Create an alias for the application:
nano ~/.bashrcor
nano ~/.zshrcAdd the following line:
alias githp='/usr/local/bin/githp'
After that, you can use it in your git directories:
githp