「Git」:修訂間差異
出自DILA Wiki
imported>Ray 無編輯摘要 |
imported>Ray 無編輯摘要 |
||
行 1: | 行 1: | ||
[http://progit.org/book/zh/ 《Pro Git》的簡體中文翻譯] | [http://progit.org/book/zh/ 《Pro Git》的簡體中文翻譯] | ||
=日常作業流程= | |||
#在 working directory 做編輯更新 | |||
#pull: 從 Remote Repository 捉最新的資料到 Local Repository | |||
#commit: 將 working directory 裏所做的更新提交到 Local Repository | |||
#push: 將 Local Repository 上傳到 Remote Repository | |||
=取得以前的某個版本= | =取得以前的某個版本= |
於 2011年1月27日 (四) 09:02 的修訂
日常作業流程
- 在 working directory 做編輯更新
- pull: 從 Remote Repository 捉最新的資料到 Local Repository
- commit: 將 working directory 裏所做的更新提交到 Local Repository
- push: 將 Local Repository 上傳到 Remote Repository
取得以前的某個版本
- 在整個專案資料夾上按右鍵 => TortoiseGit => Show log
- 選擇想要的版本 => 按右鍵 => Create Branch at this version
- 輸入 branch 名稱 (自己可以訂)
- 切換到該 branch: TortoiseGit => Switch/Checkout
刪除某個 branch
Git GUI => Branch => Delete