Can't commit changes to local git repository

前端 未结 5 723
醉话见心
醉话见心 2021-02-12 23:50

I have created a new project and checked the \"create a local git repository\" option. I opened the organizer to check that there is a repository for my project and it was there

5条回答
  •  一生所求
    2021-02-13 00:10

    I know this has already been answered but this worked for me:

    Open terminal

    cd yourprojectdirectory
    git config --global user.email "youremail@email.com"
    git config --global user.name "username"
    

提交回复
热议问题