githelper125
v1.0.8
Published
This small script will help you to save your time from repetitive task of git
Downloads
10
Readme
ghp CLI Tool
Make sure you are installing it Globally
This script simplifies git workflow tasks, allowing you to streamline repository creation and commit handling on remote repositories. It reduces the need for repetitive git commands for adding, committing, and pushing changes.
Installation
You can install this CLI tool globally using npm:
npm install -g githelper125
Helper command
ghp --help
Version command
ghp -V or ghp --version
1. Initiate and Push to the new reposity.
ghp YOUR_GITHUB_URL commit_msg(optional)
2. to commit the changes
ghp -m YOUR_COMMIT_MSG
3. to push the commits
ghp -p
4. to commit and push the changes.
ghp -mp YOUR_COMMIT_MSG
Now u don't need to use these repetitive commands ❌❌❌
git add .
git commit -m 'Initial commit'
git remote add origin repository_url
git push -u origin master
git add .
git commit -m "commit message"
git push origin main