Skip to content

Commit 568c2a2

Browse files
committed
typos
1 parent 2cf3813 commit 568c2a2

File tree

3 files changed

+30
-16
lines changed

3 files changed

+30
-16
lines changed

docs/README-comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A comparative overview of two distinct approaches to managing and storing large
99

1010
**Key Features:**
1111

12-
- **Pointer-Based Storage:** Replaces large files (e.g., audio, video, datasets) in the Git repository with lightweight text pointers, while storing the actual file contents on a remote server. citeturn0search0
12+
- **Pointer-Based Storage:** Replaces large files (e.g., audio, video, datasets) in the Git repository with lightweight text pointers, while storing the actual file contents on a remote server.
1313

1414
- **Seamless Git Integration:** Allows developers to use standard Git commands (`add`, `commit`, `push`, `pull`) without altering their workflow.
1515

docs/README-release-test.md

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,41 @@
1-
# 🧪 `git-gen3` Pilot Test Script
1+
# 🧪 `lfs-meta` Pilot Test Script
22

3-
> Please follow the steps below to test core functionality of the `git-gen3` tool. Report any issues to the project team via GitHub or the feedback form.
3+
> Please follow the steps below to test core functionality of the `lfs-meta` tool. Report any issues to the project team via GitHub or the feedback form.
44
55
---
66

77
## ✅ Prerequisites
88

99
Before starting, ensure you have:
1010

11-
- Access to a Git repo cloned from the `git-gen3` template
12-
- A working installation of the `git-gen3` CLI
11+
- Access to a Git repo cloned from the `lfs-meta` template
12+
- A working installation of the `lfs-meta` CLI
1313
- Access to an S3, GCS, or Azure bucket (read-only)
1414
- Python or Go runtime (depending on implementation)
1515
- A `fence` endpoint (or staging Gen3 system) if testing user sync
1616

17+
---
18+
19+
## 🧭 Part 0 – Track a Local File
20+
21+
### 1.1 Track a local File
22+
23+
```bash
24+
git add data/test.vcf
25+
```
26+
27+
✅ Expected result:
28+
- `.lfs-meta/metadata.json` is updated
29+
30+
1731
---
1832

1933
## 🧭 Part 1 – Track a Remote File
2034

2135
### 1.1 Track a Remote File
2236

2337
```bash
24-
git-gen3 track-remote s3://my-bucket/path/to/test.vcf \
38+
lfs-meta track-remote s3://my-bucket/path/to/test.vcf \
2539
--path data/test.vcf \
2640
--patient Patient/1234 \
2741
--specimen Specimen/XYZ
@@ -50,7 +64,7 @@ git commit -m "Track remote object test.vcf"
5064
### 2.1 Generate `DocumentReference.ndjson`
5165

5266
```bash
53-
git-gen3 init-meta \
67+
lfs-meta init-meta \
5468
--input .lfs-meta/metadata.json \
5569
--output META/DocumentReference.ndjson \
5670
--bucket s3://my-bucket
@@ -65,7 +79,7 @@ git-gen3 init-meta \
6579
### 2.2 Validate the Output
6680

6781
```bash
68-
git-gen3 validate-meta --file META/DocumentReference.ndjson
82+
lfs-meta validate-meta --file META/DocumentReference.ndjson
6983
```
7084

7185
✅ Expected result:
@@ -96,7 +110,7 @@ roles:
96110
### 3.2 Dry-Run the Sync
97111
98112
```bash
99-
git-gen3 sync-users --dry-run --input .access.yaml
113+
lfs-meta sync-users --dry-run --input .access.yaml
100114
```
101115

102116
✅ Expected result:
@@ -108,7 +122,7 @@ git-gen3 sync-users --dry-run --input .access.yaml
108122
### 3.3 Apply the Sync (Optional)
109123

110124
```bash
111-
git-gen3 sync-users --input .access.yaml --confirm
125+
lfs-meta sync-users --input .access.yaml --confirm
112126
```
113127

114128
✅ Expected result:

docs/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ Welcome to the `git-gen3` documentation! Below is an index of the available docu
66

77
## 📚 Documentation Files
88

9-
0.[README-comparison](README-comparison.md)
9+
1. [README-comparison](README-comparison.md)
1010
- A comparison of the `lfs-meta` tool with other tools and approaches.
1111
- Discusses the advantages and disadvantages of each approach.
1212
- Provides a summary of the key features and capabilities of `lfs-meta`.
13-
1. [Architecture and Sprint Plan](README-epic.md)
13+
2. [Architecture and Sprint Plan](README-epic.md)
1414
- Overview of project goals, sprint breakdowns, and deliverables.
15-
2. [Git LFS Metadata Tracking](README-gitlfs.md)
15+
3. [Git LFS Metadata Tracking](README-gitlfs.md)
1616
- Details on how to track large files using Git LFS
17-
3. [Git LFS Metadata](README-gitlfs-meta.md)
17+
4. [Git LFS Metadata](README-gitlfs-meta.md)
1818
- Information on how to manage metadata for large files in Git.
19-
4. [Git LFS Remote Buckets](README-gitlfs-remote-buckets.md)
19+
5. [Git LFS Remote Buckets](README-gitlfs-remote-buckets.md)
2020
- Details for tracking remote files without downloading them.
21-
5. [Release Testing](README-release-test.md)
21+
6. [Release Testing](README-release-test.md)
2222
- Guidelines for testing the release process and ensuring functionality.

0 commit comments

Comments
 (0)