蜜桃精品成人影片,99国产精品偷窥熟女精品视频,啊灬啊灬啊灬快灬A片免费,b站大全永不收费免费下载软件吗,重囗味sM在线观看无码

Vue創(chuàng)建項(xiàng)目時(shí)遇到Skipped git commit due to missing userna

時(shí)間:2020-08-03 15:07:58 類型:vue
字號(hào):    

  Vue創(chuàng)建項(xiàng)目時(shí)遇到Skipped git commit due to missing username and email in git config.

  原因:git沒有配置用戶名和郵箱

  解決:終端配置自己的git用戶名和郵箱

  git config --global user.name "zhuangzi"

  git config --global user.email aa@qq.com

  (這里的username是你想要輸入的用戶名,email是你想要設(shè)定的郵箱)

  配置好之后可以通過在終端輸入查看自己的用戶名和郵件

  git config user.name

  git config user.email

  再通過終端重新創(chuàng)建項(xiàng)目

  vue create test

  發(fā)現(xiàn)沒有任何提示,界面正常,問題成功解決


<