@aaronshaf/ger 1.2.5 → 1.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,16 @@
|
|
|
4
4
|
npm i -g @aaronshaf/ger
|
|
5
5
|
```
|
|
6
6
|
|
|
7
|
+
## Assumption: gerrit in known_hosts
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
# ~/.ssh/known_hosts
|
|
11
|
+
Host gerrit
|
|
12
|
+
HostName gerrit.[your domain].com
|
|
13
|
+
User [your username]
|
|
14
|
+
Port 29418
|
|
15
|
+
```
|
|
16
|
+
|
|
7
17
|
## Usage
|
|
8
18
|
|
|
9
19
|
```bash
|
|
@@ -12,4 +22,7 @@ ger branch
|
|
|
12
22
|
|
|
13
23
|
# list branches with expanded gerrit info
|
|
14
24
|
ger branch -v
|
|
25
|
+
|
|
26
|
+
# prompt to delete already-merged branches
|
|
27
|
+
ger branch -d
|
|
15
28
|
```
|