-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_new_github_repo.sh
More file actions
34 lines (28 loc) · 1013 Bytes
/
setup_new_github_repo.sh
File metadata and controls
34 lines (28 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
# Script to set up WinWebSpeed as a new GitHub repository
echo "Setting up WinWebSpeed as a new GitHub repository..."
echo ""
echo "Please create the repository on GitHub first:"
echo "1. Go to https://github.com/new"
echo "2. Repository name: winwebspeed"
echo "3. Description: Ultra-lightweight native Windows network and system monitor"
echo "4. Choose Public or Private"
echo "5. DO NOT initialize with README, .gitignore, or license"
echo "6. Click 'Create repository'"
echo ""
read -p "Press Enter after you've created the repository on GitHub..."
# Update remote to new repository
echo ""
echo "Updating remote to new repository..."
git remote set-url origin https://github.com/seppelz/winwebspeed.git
# Verify remote
echo ""
echo "Current remote configuration:"
git remote -v
# Push to new repository
echo ""
echo "Pushing code to new repository..."
git push -u origin main
echo ""
echo "Done! Your WinWebSpeed project is now on GitHub at:"
echo "https://github.com/seppelz/winwebspeed"