-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_github.sh
More file actions
32 lines (25 loc) · 972 Bytes
/
setup_github.sh
File metadata and controls
32 lines (25 loc) · 972 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
#!/bin/bash
# ============================================================
# GitHub repo setup voor Zigbee Battery Monitor
# Voer dit uit vanuit je lokale map: github/ZigbeeBatteryMonitor
# ============================================================
# 1. Git initialiseren (als dat nog niet gedaan is)
git init
# 2. Koppel aan jouw GitHub repo
git remote add origin https://github.com/joohann/ZigbeeBatteryMonitor.git
# 3. Zorg dat je op de main branch zit
git branch -M main
# 4. Alles toevoegen
git add .
# 5. Eerste commit
git commit -m "feat: initial release v1.0.0 - Zigbee Battery Monitor HACS integration"
# 6. Push naar GitHub
git push -u origin main
echo ""
echo "✅ Klaar! Je repo is live op:"
echo " https://github.com/joohann/ZigbeeBatteryMonitor"
echo ""
echo "📦 Volgende stap: HACS release aanmaken"
echo " Ga naar: https://github.com/joohann/ZigbeeBatteryMonitor/releases/new"
echo " Tag: v1.0.0"
echo " Title: v1.0.0 - Initial Release"