https://github.com/theusaf/git-cmd-tools
A collection of custom git commands
https://github.com/theusaf/git-cmd-tools
git git-commands git-tool git-tools
Last synced: about 1 month ago
JSON representation
A collection of custom git commands
- Host: GitHub
- URL: https://github.com/theusaf/git-cmd-tools
- Owner: theusaf
- License: mit
- Created: 2021-10-18T22:46:01.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-13T00:47:16.000Z (over 1 year ago)
- Last Synced: 2025-01-30T19:58:01.751Z (3 months ago)
- Topics: git, git-commands, git-tool, git-tools
- Language: JavaScript
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GIT-CMD-TOOLS
A collection of custom git commands to make things a bit faster
## Install/Build
To build or install the commands, you can either use the build script or if on linux, you can just use anything inside the /sh/ folder.
1. Clone this repository
- `git clone https://github.com/theusaf/git-cmd-tools.git`
2. `cd` into the folder
- `cd git-cmd-tools`
3. Run the build scripts
- To build all tools:
- `npm run build`
- To build a specific tool:
- `npm run build mytool`
- Current options include:
- qc
- hub4. When it is done, move the built files somewhere on your `PATH`
### git-hub
#### About
Automatically creates a GitHub repository and sets up branches.
#### Usage
`git hub`
### git-qc
#### About
Combines adding, committing, and pushing (if desired) into a single command. It will always add all files that can be tracked (like running from the root directory of the repo).
#### Usage
`git qc [options]`
#### Options
- `push` - Pushes to remote after finishing
- `force` - Force-pushes to remote#### Example:
`git qc "This is a message!" -pf`