How to do git push in Visual Studio Code?

前端 未结 5 1441
温柔的废话
温柔的废话 2021-01-31 02:38

There is a \"Push\" menu item, but when I click on it, nothing happens except for a subtle progressing bar showing up and never finished. From Visual Studio Code\'s Docs page, I

5条回答
  •  礼貌的吻别
    2021-01-31 02:56

    Tell Git your name so your commits will be properly labeled. Type everything after the $ here:

    git config --global user.name "YOUR NAME"

    Tell Git the email address that will be associated with your Git commits. The email you specify should be the same one found in your email settings on Github. To keep your email address hidden, see "Keeping your email address private".

    git config --global user.email "YOUR EMAIL ADDRESS"

    See this : Set Up Git

提交回复
热议问题