bouzenaali / git-github-gdsc-meetup

git & github workshop done as part of the GDSC ESTIN meetups

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Play the game

Fork the Repository

Hint 1: 1. Click the "Fork" button in the top right corner to create your own copy.

Clone the Repository

Hint 2:

Clone your forked repository to your local machine.

git clone https://github.com/bouzenaali/git-github-gdsc-meetup

Edit the Code

Hint 3:
  1. Open the index.html file in a text editor.
  2. Look for a section that says Team display
  3. Add your team, for example:
      <!-- Team 1 -->
      <div class="team-box">
          <div class="member-box">Ali BOUZENA</div>
          <div class="member-box">Melissa GHEMARI</div>
      </div>

Commit the Changes

Hint 4:

Add your changes to the staging area.

git add index.html

or

git add .

Commit the changes with a meaningful message.

git commit -m "Add my team"

Push to Your Repository

Hint 5:

Push your changes to your forked repository.

git push origin main

Create a Pull Request

Hint 6:
  1. Go to your forked repository on GitHub.
  2. Click on the "New Pull Request" button.
  3. Ensure the base repository is the original repository, and the base branch is main.
  4. Ensure the head repository is your forked repository, and the compare branch is also main.
  5. Click Create Pull Request and add a title and description.

About

git & github workshop done as part of the GDSC ESTIN meetups

License:MIT License


Languages

Language:HTML 100.0%