Skip to content

Commit 430f0e2

Browse files
readme updates
1 parent 059452f commit 430f0e2

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Always start by creating a new branch from the latest version of `main`. This is
135135
```bash
136136
git checkout main
137137
git pull
138-
git checkout -b feat/update-census-data
138+
git checkout -b feat/update-energy-data
139139
```
140140

141141
### Step 2: Prepare Your Changes

docs/source/workflow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ Always start by creating a new branch from the latest version of `main`.
99
```bash
1010
git checkout main
1111
git pull
12-
git checkout -b feat/update-census-data
12+
git checkout -b feat/update-energy-data
1313
```
1414

1515
### Step 2: Prepare Your Changes
1616

1717
Use the `datamanager` tool to stage your changes. The `prepare` command handles both creating new datasets and updating existing ones.
1818

1919
```bash
20-
uv run datamanager prepare census-data.sqlite ./local-files/new-census.sqlite
20+
uv run datamanager prepare energy-data.sqlite ./local-files/new-energy.sqlite
2121
```
2222

2323
### Step 3: Commit and Push
@@ -26,8 +26,8 @@ Commit the modified `manifest.json` file with a descriptive message. This messag
2626

2727
```bash
2828
git add manifest.json
29-
git commit -m "feat: Add 2025 census data with new demographic columns"
30-
git push --set-upstream origin feat/update-census-data
29+
git commit -m "feat: Add 2025 energy data with new demographic columns"
30+
git push --set-upstream origin feat/update-energy-data
3131
```
3232

3333
### Step 4: Open a Pull Request

0 commit comments

Comments
 (0)