https://github.com/ajsalemo/gutils
Rewrite of a personal git command line helper in Go
https://github.com/ajsalemo/gutils
Last synced: 11 months ago
JSON representation
Rewrite of a personal git command line helper in Go
- Host: GitHub
- URL: https://github.com/ajsalemo/gutils
- Owner: Ajsalemo
- Created: 2023-07-29T02:04:48.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-27T00:36:16.000Z (almost 3 years ago)
- Last Synced: 2025-05-21T05:36:22.534Z (about 1 year ago)
- Language: Go
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gutils
```
_ _ _
__ _ _ _ | |_ (_) | | ___
/ _` | | | | | | __| | | | | / __|
| (_| | | |_| | | |_ | | | | \__ \
\__, | \__,_| \__| |_| |_| |___/
|___/
```
Rewrite of a personal git command line helper in Go.
This combines `git add .`, `git commit -m`, and `git push` into one executable, with the option to specify the commit message, remote, and branch.
Usage:
- -b (string)
- The branch to push to - defaults to main (default "main")
- -c (string)
- A commit message - defaults to 'initial commit' (default "initial commit")
- -r (string)
- The specified upstream git remote to push to - defaults to origin (default "origin")