Skip to content

Commit 10ea125

Browse files
committed
Update README.md
1 parent 969487f commit 10ea125

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<b><code>git-uncommit</code></b>: <b>uncommit</b> and <b>recommit</b> commands for Git, undo and save Git commits to patch files
22

3-
```git-uncommit``` does exactly what it says: it uncommits the last Git commit, saving the patch.
3+
<b><i>git-uncommit</i></b> does exactly what it says: it uncommits the last Git commit, saving the patch.
44

5-
```git-recommit``` applies back the last uncommitted patch; after the patch is applied, the patch file is deleted.
5+
<b><i>git-recommit</i></b> applies back the last uncommitted patch; after the patch is applied, the patch file is deleted.
66

77
## Example usage
88

@@ -12,17 +12,17 @@ Imagine you have just committed experimental changes to your branch, after much
1212
$ git-commit -m "Experimental changes"
1313
````
1414

15-
You are unsatisfied with the result, but do not want to discard the work, so you run ```git-uncommit```
15+
You are unsatisfied with the result, but do not want to discard the work, so you run <b><i>git-uncommit</i></b>
1616

1717

1818
````sh
1919
$ git-uncommit
2020
Uncommit: 2edf199-experimental-changes.patch
2121
````
2222

23-
This undoes your experimental commit and creates ```2edf199-experimental-changes.patch```.
23+
This undoes your experimental commit and creates <b><i>2edf199-experimental-changes.patch</i></b>.
2424

25-
You can undo in this way any number of commits; ```git-recommit``` can be used to apply the patches back.
25+
You can undo in this way any number of commits; <b><i>git-recommit</i></b> can be used to apply the patches back.
2626

2727
To apply the last uncommitted patch:
2828

@@ -31,7 +31,7 @@ To apply the last uncommitted patch:
3131
$ git-recommit
3232
````
3333

34-
To run ```git-recommit``` with any saved patch file to reapply it in the order you want:
34+
To run <b><i>git-recommit</i></b> with any saved patch file to reapply it in the order you want:
3535

3636
````sh
3737
$ git-recommit <patch-file>.patch
@@ -41,7 +41,7 @@ $ git-recommit <patch-file>.patch
4141

4242
Patches can be readily edited, shared with others and applied in a new order.
4343

44-
Patches are created using ```git format-patch```, and can be applied using ```git am```, in addition to ```git-uncommit```
44+
Patches are created using ```git format-patch```, and thus can be applied using ```git am```.
4545

4646
Patches are given readable file names extracted from your commit messages.
4747

@@ -59,11 +59,11 @@ Patches are given readable file names extracted from your commit messages.
5959

6060
## Installation
6161

62-
```git-uncommit``` and ```git-recommit``` are stand-alone shell scripts, simply requiring Git to be installed.
62+
<b><i>git-uncommit</i></b> and <b><i>git-recommit</i></b> are stand-alone shell scripts, simply requiring Git to be installed.
6363

64-
In a Unix or Linux system, you can quickly install ```git-recommit``` and ```git-uncommit``` by copying the files to ```/usr/local/bin```.
64+
In a Unix or Linux system, you can quickly install <b><i>git-recommit</i></b> and <b><i>git-uncommit</i></b> by copying the files to ```/usr/local/bin```.
6565

66-
Installing ```uni2ascii``` will help ```git-uncommit``` create better filenames for patches, when your commit messages have non-ascii characters.
66+
Installing ```uni2ascii``` will help <b><i>git-uncommit</i></b> create better filenames for patches, when your commit messages have non-ascii characters.
6767

6868
## Author and licensing terms
6969

0 commit comments

Comments
 (0)