gent-cli 1.5.0 → 1.6.0
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 +15 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,23 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
> A modern, Git-like version control CLI with built-in cloud authentication and global user identity management.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Gent is a lightweight version control system that feels exactly like Git but handles user identity automatically through the cloud. No more configuring user.name and user.email for every repository!
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Features
|
|
8
8
|
|
|
9
9
|
- **Cloud Authentication**: Login once, work everywhere. Your identity follows you across projects.
|
|
10
|
-
- **Git-like Experience**: Familiar commands (
|
|
11
|
-
- **Zero Configuration**:
|
|
10
|
+
- **Git-like Experience**: Familiar commands (init, add, commit, status, log, branch, checkout).
|
|
11
|
+
- **Zero Configuration**: gent init is silent and auto-detects your authenticated user profile.
|
|
12
12
|
- **Global Identity**: Commits are automatically authored with your cloud profile.
|
|
13
13
|
- **Secure**: Tokens stored securely in your home directory.
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## Installation
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
npm install -g gent-cli
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
##
|
|
21
|
+
## Authentication
|
|
22
22
|
|
|
23
23
|
Gent uses a global authentication system. You only need to login once.
|
|
24
24
|
|
|
@@ -48,11 +48,11 @@ gent whoami
|
|
|
48
48
|
gent logout
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
##
|
|
51
|
+
## Usage
|
|
52
52
|
|
|
53
53
|
### 1. Initialize a Repository
|
|
54
54
|
|
|
55
|
-
Just like Git,
|
|
55
|
+
Just like Git, gent init is silent and sets up a new repository in your current directory. It automatically uses your logged-in identity for configuration.
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
58
|
gent init
|
|
@@ -97,7 +97,7 @@ gent log
|
|
|
97
97
|
gent log --oneline
|
|
98
98
|
```
|
|
99
99
|
|
|
100
|
-
##
|
|
100
|
+
## Branching
|
|
101
101
|
|
|
102
102
|
Manage branches just like you're used to.
|
|
103
103
|
|
|
@@ -115,9 +115,9 @@ gent checkout main
|
|
|
115
115
|
gent branch -d feature-login
|
|
116
116
|
```
|
|
117
117
|
|
|
118
|
-
##
|
|
118
|
+
## Repository Structure
|
|
119
119
|
|
|
120
|
-
Gent creates a
|
|
120
|
+
Gent creates a .gent directory in your project root:
|
|
121
121
|
|
|
122
122
|
```
|
|
123
123
|
.gent/
|
|
@@ -127,16 +127,16 @@ Gent creates a `.gent` directory in your project root:
|
|
|
127
127
|
└── HEAD # Current branch reference
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
-
Your authentication tokens are stored globally in
|
|
130
|
+
Your authentication tokens are stored globally in ~/.gent/auth.json.
|
|
131
131
|
|
|
132
|
-
##
|
|
132
|
+
## Contributing
|
|
133
133
|
|
|
134
134
|
We welcome contributions! Please fork the repository and submit a Pull Request.
|
|
135
135
|
|
|
136
|
-
##
|
|
136
|
+
## License
|
|
137
137
|
|
|
138
138
|
ISC
|
|
139
139
|
|
|
140
140
|
---
|
|
141
141
|
|
|
142
|
-
Built with
|
|
142
|
+
Built with love by [Abdalrahman Kanawati](https://github.com/abdo-ka)
|