Git Commands

Clones a git repository to a directory you are in

git clone https://github.com/username/repo.git

Add all changes to staging

git add . 

Commit your changes with a message

git commit -m "Your comment here"

Push changes to the remote repository

git push 

Pull changes from the repository

git pull

Last updated