https://github.com/aakashvaa/git-helper
It reduces the need for repetitive git commands for adding, committing, and pushing changes on remote repository
https://github.com/aakashvaa/git-helper
git git-helper github script
Last synced: about 2 months ago
JSON representation
It reduces the need for repetitive git commands for adding, committing, and pushing changes on remote repository
- Host: GitHub
- URL: https://github.com/aakashvaa/git-helper
- Owner: aakashvaa
- Created: 2024-03-01T14:09:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-16T15:51:20.000Z (almost 2 years ago)
- Last Synced: 2025-10-17T07:46:44.026Z (8 months ago)
- Topics: git, git-helper, github, script
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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 ❌❌❌
1.
```git init
git add .
git commit -m 'Initial commit'
git remote add origin repository_url
git push -u origin master
```
2.
```
git add .
git commit -m "commit message"
git push origin main
```