Day 9: Git Zero To Hero ๐
Table of contents
Tracking Project
Hope u remember the previous blog in which we studied 2 git commands i.e git log and git log --oneline, In this blog, we will study 2 git commands which will help us to track our project.
rm -rf .git
Be very cautious while executing the above command as it will delete your .git file which will result in deleting everything u have worked upon , in simple words you have to do git init again ๐
git commit -a -m "message"
The above command will skip the staging area means you don't have to write git add file_name and then git commit -m "message" this 1 command will do all that job of staging and committing. ๐
Next Blog Teaser ๐
Tracking your project ๐คฉ
Thanks for reading ๐๐งก
ย