git clone https://github.com/umar1207/git-lite.git
alias mygit = /this/repo/path/main.sh
mygit init
mygit add . # to stage all files
mygit add <filename> # to stage a specific file
# run cat .git/index to view the staging area after add command
mygit cat-file <hash> # to view the contents of a blob)
mygit commit <commit message> # run cat .git/logs/HEAD to view the commit history