Skip to content

Commit 3581b93

Browse files
author
hex316aa
committed
Update project links to point to the correct repository location
Corrects the GitHub repository URLs across documentation, components, and scripts. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 985aacde-9109-4e26-b972-11f321cb8110 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/748ca40c-adc5-4420-89fe-05eb662dff30/b09a008d-9171-4651-8f6b-1aecc255d6e2.jpg
1 parent c5e69ee commit 3581b93

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

GITHUB_MIGRATION.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This guide provides step-by-step instructions for migrating CodePatchwork from R
2222
## Step 2: Clone the Repository Locally
2323

2424
```bash
25-
git clone https://github.com/hexawolf/CodePatchwork.git
25+
git clone https://github.com/hexawulf/CodePatchwork.git
2626
cd CodePatchwork
2727
```
2828

@@ -51,7 +51,7 @@ There are two approaches to export your code from Replit:
5151
git init
5252
git add .
5353
git commit -m "Initial commit: CodePatchwork v1.0"
54-
git remote add origin https://github.com/hexawolf/CodePatchwork.git
54+
git remote add origin https://github.com/hexawulf/CodePatchwork.git
5555
```
5656

5757
## Step 4: Push to GitHub
@@ -88,7 +88,7 @@ Make sure your `package.json` has the correct repository information:
8888
```json
8989
"repository": {
9090
"type": "git",
91-
"url": "https://github.com/hexawolf/CodePatchwork.git"
91+
"url": "https://github.com/hexawulf/CodePatchwork.git"
9292
},
9393
"author": "0xWulf <dev@0xwulf.dev>",
9494
"license": "MIT",

client/src/components/AboutModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export default function AboutModal({ open, onOpenChange }: AboutModalProps) {
8383
<p>Author: 0xWulf</p>
8484
<p>Email: dev@0xwulf.dev</p>
8585
<a
86-
href="https://github.com/hexawolf/CodePatchwork"
86+
href="https://github.com/hexawulf/CodePatchwork"
8787
target="_blank"
8888
rel="noopener noreferrer"
8989
className="text-blue-500 hover:underline"

scripts/github-migration.sh

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ git commit -m "Initial commit: CodePatchwork v1.0"
3232
if git remote | grep -q "origin"; then
3333
# Update remote if it exists
3434
echo "🔄 Updating remote origin..."
35-
git remote set-url origin https://github.com/hexawolf/CodePatchwork.git
35+
git remote set-url origin https://github.com/hexawulf/CodePatchwork.git
3636
else
3737
# Add remote if it doesn't exist
3838
echo "🔗 Adding remote origin..."
39-
git remote add origin https://github.com/hexawolf/CodePatchwork.git
39+
git remote add origin https://github.com/hexawulf/CodePatchwork.git
4040
fi
4141

4242
# Display next steps

0 commit comments

Comments
 (0)