Git
其實你可以不用 cherry-pick
- Productivity
- 27 Apr, 2020
如果今天有三支 branch:master、staging、feature/b。本來你在開發中的 feature/b 是從 staging 長出來的分支,但是現在你必須將 feature/b 的內容轉移到 master 上,如圖,你會怎麼做呢? 從
read more
Git 常用命令
- Productivity
- 28 Jun, 2017
將其他分支的某個檔案合併到目前分支 $git checkout other_branch target_file顯示其他分支的檔案 $git show other_branch:path比較兩個 commit 之間的差別 $git diff revision_1:file_1 revision_2:file_2修改 commi
read more
Octopress 常用命令
- Productivity
- 23 Jun, 2017
新增文章 $bundle exec rake new_post['post_title']編輯文章 $vim source/_posts/post_file預覽網站 $bundle exec rake preview生成網站 $bundle exec rake generate發佈網站
read more