└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Assignment1 2 | Assignment for practicing git commands 3 | 4 | ### Common git commands 5 | 1.**To clone a git repository** -----------> git clone `url`
6 | 2.**To create a new branch** -----------> git checkout -b `branch name`
7 | 3.**To add the files** -----------> git add . or git add `file name`
8 | 4.**To commit the changes** -----------> git commit -m `"Commit message in quotes"`
9 | 5.**To check the status** -----------> git status
10 | 6.**Push your code to the git repository** -> git push `remote` `branch` or git push
11 | 7.**Create a pull request** 12 | 13 | --------------------------------------------------------------------------------