-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0eeeea8
commit fa804c4
Showing
2 changed files
with
64 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,67 @@ | ||
# RejX | ||
Deal with `.rej` files with reasonable pain | ||
|
||
The application is designed to work with .rej files generated during patch application failures or from updating git templates using tools s.a. `cookiecutter` or `cruft` | ||
|
||
## Usage | ||
It provides functionality to either fix these files individually or in bulk, view differences, list them, and clean them up. | ||
|
||
``` | ||
# fix a single file | ||
rejx fix <PATH_TO_REJ_FILE> | ||
The rich library is used for better console output formatting, providing a more user-friendly and visually appealing interface. | ||
|
||
It's important to use the commands cautiously, especially fix_all and clean, as they perform bulk operations. | ||
|
||
# fix all .rej files | ||
rejx fix-all | ||
This documentation provides a clear guide on how to interact with the rejx Typer application, making it easier for users to understand and utilize its functionalities. | ||
|
||
# list all .rej files | ||
rejx ls | ||
rejx ls --view tree | ||
## Setup | ||
|
||
# remove/clear all .rej files | ||
rejx clear | ||
```shell | ||
pip install rejx | ||
``` | ||
|
||
|
||
## Usage | ||
Your Python Typer application, rejx, provides a command line interface (CLI) for managing .rej files, which are typically generated when patches fail to apply cleanly. Below, I'll detail each command, its purpose, and how to use it, including optional arguments. | ||
|
||
- fix | ||
Purpose: Applies the changes from a specified .rej file to its corresponding original file. | ||
Usage: | ||
|
||
`rejx fix path/to/file.rej` | ||
|
||
- fix_all | ||
Purpose: Searches for all .rej files in the current directory and subdirectories, then applies their changes to the corresponding original files. | ||
Usage: | ||
|
||
`rejx fix_all` | ||
|
||
- diff | ||
Purpose: Displays the differences between the current files and the changes proposed in the .rej files. | ||
Usage: | ||
|
||
`rejx diff` | ||
|
||
Note: This command uses a pager for output. Use arrow keys or Vim bindings to navigate, and q to quit. | ||
|
||
- ls | ||
Purpose: Lists all .rej files in the current directory and subdirectories. By default, it lists files, but can also display them in a tree structure. | ||
Usage: | ||
For listing files: | ||
|
||
`rejx ls` | ||
|
||
For tree view: | ||
|
||
`rejx ls --view tree` | ||
|
||
For list view (default): | ||
|
||
`rejx ls --view list` | ||
|
||
- clean | ||
Purpose: Deletes all .rej files in the current directory and subdirectories. It has an optional preview feature. | ||
Usage: | ||
|
||
`rejx clean` | ||
|
||
With preview: | ||
|
||
`rejx clean --preview` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,13 @@ name = "rejx" | |
version = "0.0.1" | ||
description = "Rej(spe)X - Deal with .rej file with minimal pain" | ||
authors = ["Markus Sagen <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["git", "cookiecutter", "cruft", "rej"] | ||
readme = "README.md" | ||
license = "MIT" | ||
homepage = "https://github.com/markussagen/rejx" | ||
repository = "https://github.com/markussagen/rejx" | ||
include = ["LICENSE"] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.12" | ||
|