-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush-to-github.sh
More file actions
executable file
·41 lines (40 loc) · 1.45 KB
/
push-to-github.sh
File metadata and controls
executable file
·41 lines (40 loc) · 1.45 KB
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
34
35
36
37
38
39
40
41
#!/bin/bash
# Instructions to push to GitHub
echo "📦 Complexity Analyzer - Ready to Push to GitHub!"
echo ""
echo "Steps to publish:"
echo ""
echo "1. Create a new repository on GitHub:"
echo " https://github.com/new"
echo " - Name: claude-code-complexity-analyzer"
echo " - Description: A modern code complexity analyzer with actionable insights"
echo " - Public repository"
echo " - DO NOT initialize with README, .gitignore, or license"
echo ""
echo "2. After creating, run these commands:"
echo ""
echo " # Add your GitHub remote (replace YOUR_USERNAME)"
echo " git remote add origin https://github.com/YOUR_USERNAME/claude-code-complexity-analyzer.git"
echo " "
echo " # Push all branches and tags"
echo " git push -u origin main"
echo " git push origin cognitive-complexity"
echo ""
echo "3. Update README.md:"
echo " - Replace 'your-username' with your actual GitHub username"
echo " - Update repository URLs"
echo ""
echo "4. Enable GitHub Actions:"
echo " - Go to Settings > Actions > General"
echo " - Ensure actions are enabled"
echo ""
echo "5. Create a release:"
echo " git tag v0.0.1"
echo " git push --tags"
echo " # Then create release on GitHub"
echo ""
echo "📝 Current package name: claude-code-complexity-analyzer"
echo "📊 Ready for installation via:"
echo " npm install -D git+https://github.com/YOUR_USERNAME/claude-code-complexity-analyzer.git"
echo ""
echo "✨ Your project is ready to share with the world!"