Posts

Showing posts from May, 2022

Git Cammands

 1.$git config--global user.name Shinde-Suyog 2.$git config--global user.email suyogs2001@gmail.com 3$ code .    Open vs code 4$ git init   initilize empty repo 5$git status   Check the current status 6$git add index.html.   Add the index  file 7.$git commit -m"any msg" 8 $ touch file name             create  empty file 9$ clear      Clear all terminal 10 $ git add -A       multipal files add to staging area 11$git checkout -f      If anyone earese your file do we can recover them by its cammand 12$git log      it display how many commit you do. 13git def       It show compare the working tree to staging area 14 git def--stage.  It compare tree to last working tree 15 ls   list the all files 22..ls -lart   It show the hidden folder 16 git rm--chached index .html.   It removes the ...