A simple web application used as a live Git training exercise. Team members practice real Git workflows by adding their own profile card to this page via a Pull Request.
Each participant will:
- Clone the repo
- Create a branch
- Add their profile card to
index.html - Push and raise a Pull Request
- See their card live on the page once merged!
# Clone the repo
git clone https://github.com/Diptendu123/git-training-demo.git
cd git-training-demo
# Create your branch
git checkout -b add-your-name
# Open index.html and add your card (see instructions inside the page)
# ...
# Stage, commit, and push
git add index.html
git commit -m "feat: add [your name] to team page"
git push -u origin add-your-branch-nameThen open a Pull Request on GitHub targeting the main branch.
git-training-demo/
+-- index.html # The team profile web page - edit this!
+-- README.md # You're reading it
This is a pure HTML/CSS project. Just open index.html in any browser to preview locally.
Part of the Git Training programme by Diptendu Patra