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.
You can install this CLI tool globally using npm:
npm install -g githelper125
ghp --help
ghp -V or ghp --version
ghp YOUR_GITHUB_URL commit_msg(optional)
ghp -m YOUR_COMMIT_MSG
ghp -p
ghp -mp YOUR_COMMIT_MSG
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