Skip to the content.

๐Ÿ› ๏ธ Workshop 3: Save, Share & Deploy with GitHub

GitHub

โ€œVersioning your code is like writing its history. GitHub makes it immortal.โ€
โ€” Level UP your Code! โ€“ Workshop 3


๐ŸŽฏ Workshop Goal

Learn to track, collaborate, release, and deploy your code using Git and GitHub.
This workshop introduces best practices for version control, branching, releasing, and CI/CD pipelines.


๐Ÿ“ฆ Topics Youโ€™ll Master


๐Ÿงฐ Resources & Examples


๐Ÿ› ๏ธ Git Quick Commands

# Initialize Git
git init

# Stage and commit
git add .
git commit -m "Initial commit"

# Push to remote
git remote add origin https://github.com/yourname/repo.git
git push -u origin main

โญ๏ธ Home