GitHub training material for Basic level with automated deployment.
Live site: https://copilot-founder.github.io/git-training/
Repo URL: [https://github.com/copilot-founder/git-training/]
- Event invitation design image included
- Professional training announcement
- No Git CLI installation required!
- Practice link: https://copilot-founder.github.io/gitlearn/
- 5 Min — Welcome & Introduction
- 10 Min — GitHub Basics & Branching, Merging, Pull Requests
- 20 Min — Hands-On Exercises - Live
- 5 Min — Cheat Sheet
- 15 Min — Q&A and Wrap-Up
This repository uses GitHub Actions for automatic deployment:
-
Push your changes:
git add . git commit -m "Update training materials" git push
-
Enable GitHub Pages:
- Go to repository Settings → Pages
- Source: GitHub Actions
- The workflow will automatically deploy on every push
-
Workflow Features:
- Automatic deployment on push to main/master
- Proper permissions for Pages deployment
- Artifact upload and deployment
- No Jekyll processing (static HTML)
- Go to Actions tab in your repository
- Click "Deploy GitHub Training Site"
- Click "Run workflow"
git-training/
├── .github/workflows/
│ └── deploy.yml # Auto-deployment workflow
├── index.html # Beautiful documentation site
├── GitHub-event-invitation.jpeg
├── .nojekyll # Prevents Jekyll processing
├── .gitignore
├── LICENSE
└── README.md
Feel free to fork and contribute to this repository!