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:
- Head over to the git-workshop-karaoke-f24 repository on GitHub.
- Click the Fork button to create your own copy of the repository.
- Clone your forked repository to your local machine:
git clone git clone https://github.com/CSE-Club-ISU/git-workshop-karaoke-f24.git
- Create or add files to the repository on your local machine. These are the files that will end up on our repository.
- Stage ALL changes using the following command:
git add .
- You can also stage individual files using the following command:
git add <filename>
- Commit your changes with a message:
git commit -m "<descriptive message>"
- Push your changes to your fork:
git push origin main
- Go to your fork on GitHub and click Create Pull Request.
- Wait for us to accept your pull request. 🎉
Looking forward to seeing what you all create!