https://github.com/ericadamski/commit-with
🤗 A command line util to share the fame when pair programming by adding a co-authored message to a commit
https://github.com/ericadamski/commit-with
cli git gitcommands gitcommit node-cli nodejs pair-programming
Last synced: 8 months ago
JSON representation
🤗 A command line util to share the fame when pair programming by adding a co-authored message to a commit
- Host: GitHub
- URL: https://github.com/ericadamski/commit-with
- Owner: ericadamski
- License: mit
- Created: 2018-04-17T14:07:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T02:00:29.000Z (about 3 years ago)
- Last Synced: 2025-04-12T06:05:59.106Z (9 months ago)
- Topics: cli, git, gitcommands, gitcommit, node-cli, nodejs, pair-programming
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/commit-with
- Size: 493 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# commit-with
🤗 A command line util to share the fame when pair programming by adding a co-authored message to a commit
# Install
globally install this package using npm:
```
npm i -g commit-with
```
or yarn
```
yarn global add commit-with
```
# Usage
```
❯ commit-with --help
Usage: commit-with [options]
Searches Github for the user and auto generates a co-authored tag for your commit message
Options:
-V, --version output the version number
-a, --all commit all changed files
-f, --force ignore cached commit templates, look up user again on githup
-h, --help output usage information
```
# Example
Commit currently staged files
```
❯ commit-with ericadamski
```

Commit, and add using `-a` git commit flag
```
❯ commit-with -a ericadamski
```
