Git Commands
$ git --version
git version 2.35.1.windows.2
$ git init test-project
$ git config --global init.defaultBranch main
$ ls -al
$ git status
$ git add .
$ git add hello.txt
$ git rm --cached hello.txt
$ git commit -m "adding hello.txt"
$ git log
$ git ...
ngeninv.hashnode.dev1 min read