๐ ๏ธ Workshop 3: Save, Share & Deploy with 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
- ๐ Git basics:
init
,commit
,push
,pull
- ๐ฟ Creating, switching, and merging branches
- ๐งฉ GitHub releases and storing project artifacts
- ๐ค Automating with GitHub Actions (intro to CI/CD)
๐งฐ 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