下麵舉Android的Browser源碼通過git保存到github上 首先在github.com官網new repository一個倉庫 在Repository name哪裡填入Browser然後創建 這時候會生成一個地址,這個就是你的倉庫地址。 例如我的:https://github.com/g ...
下麵舉Android的Browser源碼通過git保存到github上
首先在github.com官網new repository一個倉庫
在Repository name哪裡填入Browser然後創建
這時候會生成一個地址,這個就是你的倉庫地址。
例如我的:https://github.com/gitdecode/Browser.git
然後在你源碼的倉庫下配置gitconfig,進入源碼的目錄下,vim .git/config
然後在url那裡填入你在github上創建的地址,這裡也就是https://github.com/gitdecode/Browser.git
保存退出。
然後給你的github地址添加origin,執行這個命令添加git remote add origin https://github.com/gitdecode/Browser.git
再執行git push origin master 將當前的分支提交到你的github倉庫上。
這時會讓你輸入github的賬號和密碼。把對應的賬號密碼寫入即可,如果源碼比較大,這裡會卡一段時間才上傳完成。