A python command-line for gitmoji
Project description
gitmopy
An interactive Python implementation of the Gitmoji standard: https://gitmoji.dev/
pip install gitmopy
How to use
- I typically use
$ gitmopy commit --add --keep-alive
- Navigate through options with ⬆️ and ⬇️
- Select option with
space
- Validate selection with
enter
- Press
tab
to auto-complete- Press
tab
on an empty line to see history
- Press
- Restart commit with
crtl+c
- The keyboard interruption will be caught once, then press
enter
to restart
- The keyboard interruption will be caught once, then press
Suggested shortcuts
alias gpy="gitmopy"
alias gpyc="gitmopy commit"
alias gpya="gitmopy commit --add"
alias gpyk="gitmopy commit --add --keep-alive"
Examples
# Typical daily use-case
# ----------------------
# continuously commit, interactively select files to stage
$ gitmopy commit --add --keep-alive
# same using an alias, + push after every commit (could be dangerous)
$ gpyk --push
# Specific usage
# --------------
# commit currently staged files. Will fail if no file is staged.
$ gitmopy commit
# Enable interactive file selection if no file is currently staged. Ignored if
# there are staged files.
$ gitmopy commit --add
# Commit continuously: don't leave the CLI after the first commit but restart
# the commit procedure.
$ gitmopy commit --keep-alive
# Push to remote repositories after commit.
# Interactively select remotes to push to if there are more than 1.
$ gitmopy commit --push
# Push to specific remotes
$ gitmopy commit --push --remote origin --remote upstream
# Make and display a commit message without staging/committing/pushing
$ gitmopy commit --dry
# configure gitmopy
$ gitmopy config
# print version, data paths and current configuration
$ gitmopy info
# print helps
$ gitmopy --help
$ gitmopy commit --help
User guide
$ gitmopy info
gitmopy info:
version : 0.1.0
app path: /Users/victor/.gitmopy
history : /Users/victor/.gitmopy/history.json
config : /Users/victor/.gitmopy/config.yaml
Current configuration:
skip_scope : False
skip_message : False
capitalize_title: True
enable_history : True
Update configuration with
$ gitmopy config
$ gitmopy config
❓ Configure gitmopy locally. Use 'space' to (de-)select, 'enter' to validate.
❯ ○ Skip commit scope
○ Skip commit message
◉ Capitalize commit title
◉ Remember commit history for auto-complete and emoji sorting
Config will be saved in /Users/victor/.gitmopy/config.yaml.
Get help with
$ gitmopy --help
Usage: gitmopy [OPTIONS] COMMAND [ARGS]...
╭─ Options ───────────────────────────────────────────────────────────────────────────╮
│ --install-completion Install completion for the current shell. │
│ --show-completion Show completion for the current shell, to copy it or │
│ customize the installation. │
│ --help Show this message and exit. │
╰─────────────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ──────────────────────────────────────────────────────────────────────────╮
│ commit Commit staged files. Use --add to interactively select files to stage if │
│ none is already staged │
│ config Configure gitmopy │
│ info Print gitmopy info │
╰─────────────────────────────────────────────────────────────────────────────────────╯
$ gitmopy commit --help
Usage: gitmopy commit [OPTIONS]
Commit staged files. Use --add to interactively select files to stage if none is
already staged
╭─ Options ───────────────────────────────────────────────────────────────────────────╮
│ --repo TEXT Path to the git repository [default: .] │
│ --add --no-add Whether or not to interactively select files to stage │
│ if none is already staged │
│ [default: no-add] │
│ --push --no-push Whether to `git push` after commit. Disabled by │
│ default. │
│ [default: no-push] │
│ --dry --no-dry Whether or not to actually commit. [default: no-dry] │
│ --help Show this message and exit. │
╰─────────────────────────────────────────────────────────────────────────────────────╯
To Do
- Features
- If requested:
- Install hook
git commit
flags (like-S
)- max history length (if loading the json becomes slow)
- If requested:
- Tests
- https://typer.tiangolo.com/tutorial/testing/
- 👋 Help wanted
- Docs
- Not critical
Resources
gitmopy
is inspired by `gitmoji-cli.
It is built thanks to:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gitmopy-0.3.0.tar.gz
(17.2 kB
view details)
Built Distribution
gitmopy-0.3.0-py3-none-any.whl
(17.4 kB
view details)
File details
Details for the file gitmopy-0.3.0.tar.gz
.
File metadata
- Download URL: gitmopy-0.3.0.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.9.2 Darwin/22.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57beb49472b24fd9e5ffa2264107bbbda2a87e829c78030bdb5394d2be995112 |
|
MD5 | d044c9cb66e5da66f819b79afb411023 |
|
BLAKE2b-256 | dbf0b38c24dce38f6a22622eac6e41a12d9764dfc10f9434a9453bbe0fa39f1a |
File details
Details for the file gitmopy-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: gitmopy-0.3.0-py3-none-any.whl
- Upload date:
- Size: 17.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.9.2 Darwin/22.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a10b6f88d3f3701919aed7908358e0088bde4bfa58ec7cbe8da2cfacc3f26e7a |
|
MD5 | 67761b75ef1a8c36975a34b6fc2c9c90 |
|
BLAKE2b-256 | bdffbe88cb995f3b5d953af09a35eb739d726bac289e3a59357daab86da6cfeb |