GITHUB
1. touch , use this to create a new file 2. rm -rf to remove the folder 3. git status this command will let us know that someone has made any changes but its not present and visible in the github 4. git add . this means stagg or add all the file and folder code of that particular directory, example :- photo is clicked 5. git add rishabh.txt here we specifically adding only rishabh.txt file changes not all the file changes 6. Previously when we do git status - the file is red which is changed but now after adding git add , file color changes to green 7. git log To check about the repo owner and all other info of commits 8. git commit -m "rishabh.txt added" -m means message, this is for maintaing the history of your changes 9. vi rishabh.txt to open the file in vim 10. cat rishabh.txt It basically display all the text in rishabh.txt 11. git restore --staged rishabh.txt this is for, if you do mistakenly git add and then you don't want t...