1. 程式人生 > >如何將Android Studio的項目上傳到Github上

如何將Android Studio的項目上傳到Github上

github

  1. VCS-->Import into version control-->Share Projection on Github

  2. 在彈出的對話框中輸入相關信息

  3. 如果彈出一下錯誤:

Please tell me who you are. Run git config --global user.email "[email protected]"

........

解決辦法:

在Git目錄下打開git-base.ext輸入以下命令:

git config --global user.email "[email protected]"//你的郵箱

git config --global user.name "xxx"//你的名字

4. 刪掉GitHub上的倉庫重來一次就好了

如何將Android Studio的項目上傳到Github上