版本控管界中最強的工具莫過於 Git (https://git-scm.com/) 了
此外生長在光世代的我們,必須快速分享程式碼或在異地抓 Code 開發
人在雲端身不由己,Bitbucket (https://bitbucket.org/) 這套雲端服務可以幫助你
以下介紹如何在 Windows 7 中使用 Android Studio 開發 app 時,用 Git 做好版本控管
並在 Bitbucket 下 快速 push/pull code 達成高效率的開發
Step 0: 環境設定
首先,你要有用 Android Studio 開發 apps 的習慣
什麼?沒有!幹你娘請關掉網頁
Step 1: 安裝 Git for Windows
至 https://git-scm.com 下載 Git for Windows 版本並安裝
安裝完後到 Git Folder 下可以找到一個 Git Bash.vbs
點兩下開啟後便可直接在上面下 Git 指令
Step 2: 設定 Android Studio 的 VCS 為 Git
Android Studio 開啟 Project,至 File > Settings > Version Control > Git
設定 Path to Git executable,輸入 Git\cmd\git.exe 的路徑
至 VCS > Enable Version Control Integration 中選擇 Git
Step 3: 開通 Bitbucket 雲端服務
至 https://bitbucket.org/ 創建一個帳號
輸入 Project Name 和 Description
按下 Button 後就會在原端上建立一個空的 repository
Step 4: 在 Local 端建立與 Bitbucket 之連結
開啟 Git Bash.vbs 輸入以下指令;
$ cd /path/to/your/project $ git remote add origin https://account@bitbucket.org/account/project.git
Step 5: 上傳 Code 至雲端
回到 Android Studio,在 Project 視窗中點一下整個 Project 的根目錄
再到 VCS > Git 中點一下 Add,等於對整個 Project 做了 git add . 指令
再到 VCS > Commit Changes,輸入 Commit Message
輸入完後點選 Commit and Push... ,需要輸入密碼
完成後到 https://bitbucket.org/ 就可以看到剛剛改的 Code 都上道雲端啦~~
Step 6: 從雲端下載 Code
Android Studio 進到 VCS > Update Project,會選擇幾種下載模式
按下 OK 就會把雲端的 Code 抓下來啦
Easy~~
沒有留言:
張貼留言