2017-07-25 103 views
0

我的環境:
OS:win10
Vue:2.82
Yarn:0.27.5
Nodejs:8.2.1
Other:Git-bash
當我第一次使用vue init webpack alphalayui建立一個VUE項目,我發現一個奇怪的事情。VUE初始化的WebPack alphalayui奇怪的

它可以得到我的Email-ID,我非常驚訝,這個Email-ID只是用在一個名爲Foxmail的軟件中。但是我在這臺電腦上有很多Email-ID。

我想知道如何能vue init讓我的電子郵件ID?

有人能幫助我嗎?提前致謝。
$ vue init webpack alphalayui ? Project name (alphalayui) y ? Project name y ? Project description (A Vue.js project) y ? Project description y ? Author (alphayan <[email protected]>) y ? Author y ? Vue build standalone ? Install vue-router? (Y/n) y ? Install vue-router? Yes ? Use ESLint to lint your code? (Y/n) y ? Use ESLint to lint your code? Yes ? Pick an ESLint preset (Use arrow keys) ? Pick an ESLint preset Standard ? Setup unit tests with Karma + Mocha? (Y/n) y ? Setup unit tests with Karma + Mocha? Yes ? Setup e2e tests with Nightwatch? (Y/n) y ? Setup e2e tests with Nightwatch? Yes

+0

可能使用從全球混帳配置 – Phil

回答

2

試試這個:

git config --get user.email 

...,看看它是否匹配。

這是Vue.init在vue-cli/lib/git-user.js

try { 
name = exec('git config --get user.name') 
email = exec('git config --get user.email') 
} catch (e) {} 
+0

所以這是它是什麼,非常感謝你。 – alphayan