2
1 Comment

Top 10 git commands everyone should know

https://dev.to/nyxtom/top-10-git-commands-everyone-should-know-57e0
submitted this linkon August 22, 2020
  1. 1

    Most Common GIT Commands
    A git command cheat sheet is a document that lists the most commonly used commands and their corresponding syntax.
    The following is a list of git commands with syntax:
    -git add -A
    -git commit -m “commit message”
    -git push origin master
    -git pull origin master
    -git clone {URL of git repository}

    https://blog.stackfindover.com/git-command-cheat-sheet/