Assignment for practicing git commands
1.To clone a git repository -----------> git clone url
2.To create a new branch -----------> git checkout -b branch name
3.To add the files -----------> git add . or git add file name
4.To commit the changes -----------> git commit -m "Commit message in quotes"
5.To check the status -----------> git status
6.Push your code to the git repository -> git push remote
branch
or git push
7.Create a pull request