I did git init and git add . in your home directory, which I think slowed down every operation because the directory is so large. How can I cancel the git init home directory?
git init
git add .
You can simply do rm -rf $HOME/.git to remove all version control information stored in git, which overrides all git init .
rm -rf $HOME/.git
But I really doubt that starting git init can slow things down.