How do you clone a git repository?
Copy the approriate code from the Git remote (Github, Gitlab, Bitbucket etc…) and then do:
git clone git@github.com:USER-NAME/REPOSITORY-NAME.git
How do you check the status of the modified files on your local?
git status
How do you push files into the remote git repository?
Use git add to add the changes files or git add . to add all files then git commit -m "some message" to commit then use git push to push the changes.
How do you get logs of all changes made in the git repository?
git log