以下介紹用 bitbucket 搭配 git 控管程式碼的快速上手。
- 首先在 bitbucket 建立新的 Repository。申請完畢後,假設 Repository 的名稱叫做 test,可以按 bitbucket 網頁上的 Clone 按鈕,會出現 git clone 指令,通常為:
-
git clone https://<user_name>@bitbucket.org/<user_name>/test.git
<user_name> 那裡寫的是你的 bitbucket 帳號名稱。
- clone 完畢,本地端出現 test 資料夾。
-
將要新增的檔案,用以下指令 add 到 repo 內:
git add <file_name>
-
然後 commit:
git commit -m "這裡打註解"
-
最後 push 上 code,就會正式將本地端檔案上傳 bitbucket:
git push origin master
大功告成!
留言
張貼留言