Added git bisect shortmaps
parent
3fc71b9623
commit
2bd1bb990a
12
README.md
12
README.md
|
@ -21,6 +21,11 @@ By default, the following mappings are available, each with tab completion:
|
|||
|
||||
* `a` - git add
|
||||
* `A` - git add -A
|
||||
* `b` - git bisect
|
||||
* `bs` - git bisect start
|
||||
* `bg` - git bisect good
|
||||
* `bb` - git bisect bad
|
||||
* `br` - git bisect reset
|
||||
* `c` - git commit
|
||||
* `C` - git commit -am
|
||||
* `co` - git checkout
|
||||
|
@ -39,6 +44,13 @@ By default, the following mappings are available, each with tab completion:
|
|||
The shortmaps may only be used within a git repository. Otherwise, they will
|
||||
invoke the actual command on the system.
|
||||
|
||||
If a command conflicts with an existing command on your system (e.g. `bg`), wrap
|
||||
the command in quotes to invoke the actual command. For example:
|
||||
|
||||
```shell
|
||||
$ 'bg' # invoke actual 'bg' command rather than shortmap
|
||||
```
|
||||
|
||||
## Configuration
|
||||
The file format is as follows:
|
||||
|
||||
|
|
Loading…
Reference in New Issue