Welcome to this Git training task! This exercise will help you understand how to clone a repository, create a new branch, make changes, and push your work.
Your task is to:
- Clone this repository.
- Create a new branch.
- Make some changes.
- Commit the changes.
- Push the branch to the remote repository.
git clone <repository_url>
cd <repository_name> git checkout -b <your_branch_name>- Open any file and make a small change, or create a new file.
- Save the changes.
git add .
git commit -m "Added changes for training task" git push origin <your_branch_name>Once you have pushed your branch, submit the branch name or create a pull request.
Happy Coding! 🚀