Git Helper Script is a bash script that simplifies common Git tasks such as cloning repositories, creating branches, committing changes, and pushing to remote repositories. It provides a straightforward command-line interface for developers to manage their Git workflow efficiently.
- Clone repositories.
- Create new branches.
- Commit changes with a message.
- Push branches to remote repositories.
- Simple command-line interface with subcommands.
- Git
- Bash (typically pre-installed on Unix-like operating systems).
- Clone or download the repository.
- Make the script executable:
chmod +x git_helper.sh- Run the script with a subcommand and necessary options:
./git_helper.sh {clone|create-branch|commit|push} [options]