gitfleet 1.0.0 → 1.0.1
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/package.json +1 -1
- package/readme.md +56 -0
package/package.json
CHANGED
package/readme.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# GitFleet
|
|
2
|
+
|
|
3
|
+
Manage multiple Git repositories from a single command.
|
|
4
|
+
|
|
5
|
+
Stop manually pulling, pushing, and checking repos one by one.
|
|
6
|
+
|
|
7
|
+
GitFleet lets you manage your entire repo fleet in seconds.
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- Add multiple repositories
|
|
12
|
+
- Run commands across all repos
|
|
13
|
+
- Pull/push everything instantly
|
|
14
|
+
- Clean CLI output
|
|
15
|
+
- Lightweight config system
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
npm install -g gitfleet
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
Add repository
|
|
24
|
+
|
|
25
|
+
gitfleet add /path/to/repo
|
|
26
|
+
|
|
27
|
+
Pull all repos
|
|
28
|
+
|
|
29
|
+
gitfleet pull
|
|
30
|
+
|
|
31
|
+
Push all repos
|
|
32
|
+
|
|
33
|
+
gitfleet push
|
|
34
|
+
|
|
35
|
+
List repos
|
|
36
|
+
|
|
37
|
+
gitfleet list
|
|
38
|
+
|
|
39
|
+
## Example
|
|
40
|
+
|
|
41
|
+
Managing 20+ microservices becomes easy:
|
|
42
|
+
|
|
43
|
+
gitfleet pull
|
|
44
|
+
gitfleet status
|
|
45
|
+
gitfleet push
|
|
46
|
+
|
|
47
|
+
## Why GitFleet?
|
|
48
|
+
|
|
49
|
+
Developers working with multiple repositories waste time repeating commands.
|
|
50
|
+
|
|
51
|
+
GitFleet automates it.
|
|
52
|
+
|
|
53
|
+
## Author
|
|
54
|
+
|
|
55
|
+
Kartik Singla
|
|
56
|
+
Full-Stack / Web3 Developer
|