Day 9: Git Zero To Hero ๐Ÿš€

ยท

1 min read


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 ๐Ÿคฉ

Rahul Gandhi Khatam GIF - Rahul Gandhi Rahul Khatam - Discover & Share GIFs

Thanks for reading ๐Ÿ™๐Ÿงก

ย