Skip to content

CSE-Club-ISU/git-workshop-karaoke-f24

Repository files navigation

Git Workshop Karaoke (Fall '24)

Welcome to the Git Workshop Karaoke! 🎤 This workshop will teach you the fundamentals of Git, and at the end, we’ll have a fun activity where we present the code that everyone pushes. Follow the steps below to get started:

Instructions

1. Fork the repository

2. Clone your fork

  • Clone your forked repository to your local machine:

git clone git clone https://github.com/CSE-Club-ISU/git-workshop-karaoke-f24.git

3. Add some files

  • Create or add files to the repository on your local machine. These are the files that will end up on our repository.

4. Stage your changes

  • Stage ALL changes using the following command:

git add .

  • You can also stage individual files using the following command:

git add <filename>

5. Commit your changes

  • Commit your changes with a message:

git commit -m "<descriptive message>"

6. Push your changes

  • Push your changes to your fork:

git push origin main

7. Create a Pull Request

  • Go to your fork on GitHub and click Create Pull Request.

8. Wait for review

  • Wait for us to accept your pull request. 🎉

Looking forward to seeing what you all create!