- 🌱 I’m currently learning python,pygame especially Yolo.
- 💬 Ask me about anything even i don't know, it is communication that is the most important thing.
A practical, no-fluff guide for developers (especially beginners) to push projects to GitHub — including fixes for the most common pitfalls.
- Go to github.com/new
- Enter a repository name (e.g.,
my-project) - Do NOT initialize with a README, .gitignore, or license if you already have local code
- Click Create repository
# Navigate to your project folder
cd /path/to/your/project
# Initialize Git
git init
# Stage all files
git add .
# Commit with a message
git commit -m "Initial commit"
# Connect to your remote repo (use SSH or HTTPS)
git remote add origin git@github.com:HduHestin/your-repo-name.git
# Push to main branch
git push -u origin main