Git Command | Description |
---|---|
git clone <repo-URL> |
Create local repository from remote |
git commit -am "<commit-message>" |
Commit current changes to the local repository |
git log |
View commit log |
git push |
Update remote repository from local repository |
git pull |
Update the local repository from the remote repository (e.g., GitHub) |