-
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 (39 loc) 路 1.39 KB
/
Copy pathpush_to_github.sh
File metadata and controls
executable file
路41 lines (39 loc) 路 1.39 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 for pushing to GitHub
echo "=========================================="
echo "Push to GitHub - Instructions"
echo "=========================================="
echo ""
echo "1. First, create a new repository on GitHub:"
echo " - Go to https://github.com/new"
echo " - Repository name: enterprise-multi-agent-research"
echo " - Description: Production-grade multi-agent AI system for enterprise research"
echo " - Choose: Public or Private"
echo " - DO NOT initialize with README, .gitignore, or license"
echo ""
echo "2. After creating the empty repository on GitHub, run these commands:"
echo ""
echo " # Add your GitHub repository as remote origin"
echo " git remote add origin https://github.com/aimanyounises1/enterprise-multi-agent-research.git"
echo ""
echo " # Or if using SSH:"
echo " # git remote add origin git@github.com:aimanyounises1/enterprise-multi-agent-research.git"
echo ""
echo " # Push to GitHub"
echo " git branch -M main"
echo " git push -u origin main"
echo ""
echo "3. Optional: Create and push a development branch"
echo " git checkout -b develop"
echo " git push -u origin develop"
echo ""
echo "=========================================="
echo "Your repository is ready to be pushed!"
echo "Current status:"
echo ""
git status
echo ""
echo "Latest commits:"
git log --oneline -5
echo ""
echo "=========================================="