Github error message: git-it: command not recogniz

2020-05-08 07:06发布

问题:

Just installed GitHub for Windows and have done the configuration part by typing in

$ git config --global user.name "<Your Name>"
$ git config --global user.email "<youremail@example.com>"

with my name and email entered in the proper place.

The problem is when I try to verify it using the command git-it verify I am getting an error saying git-it: command not recognized.

Could any of you tell me how to fix this??

EDIT: I think I should also add that when I give the command git --version it shows the version as git version 2.7.1.windows.1 Doesnt this mean that git is already installed??

回答1:

You have to install git-it before you can use it as a command . git-it does not get installed when you install Github for windows . Use this to install git-it

npm install -g git-it

and try.



标签: git shell github