Git Commands.

Git Commands This is a complete list of commands which you will need to keep in mind. While using git. git confing --global user.name anant = For setting name for first time git confing --global user.email xyz@gmail.com = For setting Email. git config --global user.name = For getting name git config --global user.email = For getting email git init = For making the git repository at that directory. git add --a OR git add -A = For adding all untracked files to work stage git commit -m "Second commit new features added" = for committing the stage files repository. git status = For looking untracked files or not committed files on repository. git log = For looking all history commit's. rm -rf .git = For deleting all info about that repository which were in .git folder. ls = For looking all files in present working directory. pwd = For looking present working directory. git clone [Link of a repository from github] = For cloning means to download a copy from github to your pw...