1.下載Git客戶端:https://git-scm.com/downloads/,一路next安裝成功
2.配置Git,
git config --global user.name "Your Name"? 配置git賬戶名稱
git config --global user.email "email@example.com"? 配置郵箱
3.配置ssh key
3.1. 創(chuàng)建SSH key
????打開GIT Bash,輸入命令,改為自己的郵箱地址
????$ ssh-keygen -t rsa -C "emali@example.com"
????輸入命令后一路回車!
3.2. 在Github添加賬戶的SSH key
搜索記事本打開id_rsa.pub文件,復(fù)制文件中的sshkey,進(jìn)入github設(shè)置頁面,點(diǎn)擊"SSH &GPG Key",new ssh key,將復(fù)制的sshkey粘貼進(jìn)去,保存.
4.返回Git Bash考蕾。輸入命令ssh -T git@github.com,回車,根據(jù)提示輸入yes
5.配置AS
打開setting, git中選擇git.exe安裝目錄關(guān)聯(lián);
github中根據(jù)Token登錄, token獲取在github->setting->Develope Setting - >Personal access tokens,新建使用Token,創(chuàng)建成功后將token復(fù)制到as中進(jìn)行登錄.
6.上傳項(xiàng)目
在Android studio打開你要上傳的項(xiàng)目
在上方選擇VCS—import into Version Control — Share Project on Github