I remember not using it before. Is there something wrong?
黄舟2017-05-02 09:52:37
Used https when adding the remote library. . So every time I have to use https to push to the remote library, the speed is still slow. .
View the transport protocol used:
git remote -v
Reset to ssh method:
git remote rm origin
git remote add origin git@github.com:username/repository.git
git push -u origin master
阿神2017-05-02 09:52:37
git config --global credential.helper "store"
You can see it in the .gitconfig file after configuration
PHPz2017-05-02 09:52:37
Because you are currently using the https submission method, just change it to the ssh method.