bimagic 1.4.2 → 1.4.4

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.
Files changed (3) hide show
  1. package/README.md +16 -2
  2. package/bimagic +1109 -1039
  3. package/package.json +5 -2
package/README.md CHANGED
@@ -26,6 +26,8 @@ Bimagic is an interactive command-line tool that streamlines common Git operatio
26
26
  - 🔐 Secure GitHub authentication via personal access tokens
27
27
  - 📦 Easy repository initialization and setup
28
28
  - 📥 Clone repositories (Standard or Interactive selection)
29
+ - 📊 Dynamic themed progress bar for cloning
30
+ - 🗜️ Shallow clone support (--depth)
29
31
  - 🔄 Simplified push/pull operations
30
32
  - 🌿 Branch management made easy
31
33
  - 📊 Status dashboard (ahead/behind, branch, clean/uncommitted/conflicts)
@@ -49,6 +51,11 @@ Run this one-line command to install Bimagic:
49
51
  ```bash
50
52
  curl -sSL https://raw.githubusercontent.com/Bimbok/bimagic/main/install.sh | bash
51
53
  ```
54
+ You can also install **bimagic** using npm.
55
+
56
+ ```bash
57
+ npm i -g bimagic
58
+ ```
52
59
 
53
60
  ### Quick Access (Keybinding)
54
61
 
@@ -143,6 +150,8 @@ export PATH="$HOME/bin:$PATH" # For user-local installation
143
150
  - gum (required for modern UI and interactive selection)
144
151
  - See installation instructions below or use the automated script.
145
152
  - If not installed, the tool will not work.
153
+ - Node.js **v16 or higher**
154
+ - npm **v8+**
146
155
 
147
156
  ## Configuration
148
157
 
@@ -302,6 +311,10 @@ You can also use flags to perform specific actions immediately:
302
311
  ```bash
303
312
  bimagic -d "repo-url"
304
313
  ```
314
+ - **Shallow Clone**:
315
+ ```bash
316
+ bimagic -d "repo-url" --depth 1
317
+ ```
305
318
  - **Interactive Clone** (Select specific files/folders to download):
306
319
  ```bash
307
320
  bimagic -d -i "repo-url"
@@ -360,11 +373,12 @@ At the top of the interface, a status box summarizes:
360
373
 
361
374
  ### Clone repository (Option 1)
362
375
 
363
- This feature allows you to clone a repository with two modes:
376
+ This feature allows you to clone a repository with two modes, both featuring a **themed progress bar** to show real-time download status:
364
377
 
365
378
  #### Standard Clone
366
379
 
367
- Perform a full `git clone` of the target repository.
380
+ Perform a full or shallow `git clone` of the target repository.
381
+ - Usage from CLI: `bimagic -d "repo-url" [--depth <number>]`
368
382
 
369
383
  #### Interactive Clone (Sparse Checkout)
370
384