This folder contains resources and examples for learning how to commit to a Git repository.
For today's hands-on activity, we have provided a set of coding problems available in both Java and Python. Your main goal is to solve these problems as accurately and efficiently as possible within the time limit!
There is a total of 3 problems, each with a certain level of difficulty.
You can collaborate with peers! However, we encourage you to complete the solutions in your code as well and push them to your own forked remote repo.
- Git installed on your machine
-
Fork the repository to your own GitHub account
-
Clone the repository onto your local machine
git clone <your-forked-repo-url> name_repo-optional
-
Check the status of your files
git status
-
Stage your changes
git add . -
Commit your changes
git commit -m "Your commit message here" -
Push to your remote repository
git push origin main
