diff options
-rw-r--r-- | README.rst | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -1,3 +1,5 @@ +B4 tools +======== This is a helper utility to work with patches made available via a public-inbox archive like lore.kernel.org. It is written to make it easier to participate in a patch-based workflows, like those used in @@ -10,21 +12,21 @@ See man/b4.5.rst for more information. Installing ---------- -``` -python3 -m pip install --user b4 -``` +To install from pypi:: + + python3 -m pip install --user b4 Upgrading --------- -``` -python3 -m pip install --user --upgrade b4 -``` +If you previously installed from pypi:: + + python3 -m pip install --user --upgrade b4 Running from the checkout dir ----------------------------- If you want to run from the checkout dir without installing the python -package, you can use the included b4.sh wrapper. You can set it as an -alias in your .bash_profile:: +package, you can use the included ``b4.sh`` wrapper. You can set it as +an alias in your .bash_profile:: alias b4="$HOME/path/to/b4/b4.sh" |