gitopo 0.0.1 → 0.0.2
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 +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,17 @@ Or install globally:
|
|
|
33
33
|
npm install -g gitopo
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
### Troubleshooting
|
|
37
|
+
|
|
38
|
+
If you encounter "Electron failed to install correctly" error, run:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
cd $(npm root -g)/gitopo
|
|
42
|
+
node node_modules/electron/install.js
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
This is a [known Electron issue](https://github.com/electron/electron/issues/20731).
|
|
46
|
+
|
|
36
47
|
## Usage
|
|
37
48
|
|
|
38
49
|
Run in any Git repository:
|