Skip to content

Latest commit

 

History

History
55 lines (41 loc) · 665 Bytes

git-command-basic.md

File metadata and controls

55 lines (41 loc) · 665 Bytes

Git Basic Command

  • Set your username:
        git config --global user.name "FIRST_NAME LAST_NAME"
  • Set your email address:
        git config --global user.email "[email protected]"

Basic command section 1

    git --version
    git status
    git config --list
    git init
    git add fileName/.

unstage file

    git rm --cached fileName/.
    git commit -m "First commit"

Delete Local branch

        git branch -D <branch_name>

Delete Remove Branch

        git push -d <remote_name> <branchname>
        eg: git push -d origin test