git repo程式碼部署策略及工具

世有因果知因求果發表於2018-03-18

一般在專案或者產品開發流程中,先是開發人員在本地做好開發及測試,其中可能包含很多用於測試用的目錄以及原始碼檔案,在部署前往往會有一個build過程。web專案最終build產生出優化生產環境下減少http請求的bundle js,已經有了sprite image外加css程式碼的適合生產部署的系統。在部署的時候,很多檔案可能並不想部署到伺服器上去。如何處理?

一個可行的策略及步驟如下:

1. 使用.gitattributes檔案中的export-ignore來指定哪些檔案將不被打包到部署包;

2. 使用git archive命令將master或者integration等branch的內容打包: git archive intergation -o release.zip

3. 將上述release.zip檔案解壓後即可在生產系統中部署。

以上3個步驟已經是可以工作了。但是可能還是有待改進。比如我們releaes的package也希望在一個repo中做好版本控制,也就是希望放到repo中。同時,我們可能還有一個本地最後測試production release的需求。你當然可以另外建一個repo和目錄來專門存放這個包,並且搭建對應的本地生產測試環境。但筆者建議更進一步,也就是使用同一個repo,但是又不希望看到開發repo中太多的歷史資訊。那麼可以繼續下面幾個步驟:

4. 建立一個deliverable的branch,專門用於儲存git archive產生的釋出包,並用於本地生產測試。 

git checkout --orphan deliverable // 建立deliverable的orphan branch,該分支上將儲存所有release包
git rm -rf . // 由於orphan分支建立後所有index的內容都將自動包內含integration分支的內容,我們需要全部刪除

5. 將archive integration生成的釋出包解壓後放到deliverable分支的根目錄中。這時deliverable就僅僅包含了乾淨的釋出包檔案目錄。

6. 使用該釋出包繼續測試是否work,確認ok後,直接git a . git commit即可。

7. 以後有新的版本釋出的話,重複第2.步到第6步即可。

 

使用git archive命令可以很好地拉取git repo中的一個snapshot,同時在.gitattributes檔案中指定歸檔策略,將一些不必要的檔案不放在部署伺服器上。

# used to remove files from deployment using `git archive`
# git files
.gitattributes export-ignore
.gitignore export-ignore
# drush files
build.make export-ignore
patches.txt export-ignore
# zen 5.x files
sites/all/themes/*/sass export-ignore
sites/all/themes/*/sass-extensions export-ignore
sites/all/themes/*/images-source export-ignore
sites/all/themes/*/fonts export-ignore
sites/all/themes/*/config.rb export-ignore
sites/all/themes/*/STARTERKIT export-ignore

最後執行以下命令生成對應的包

git archive master | bzip2 -9 > latest.tar.bz2

 類似gh-pages方法部署

https://coderwall.com/p/-bcoua/how-to-create-gh-pages-branch

https://stackoverflow.com/questions/19980631/what-is-git-checkout-orphan-used-for

https://stackoverflow.com/questions/4750520/git-branch-gh-pages

https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/

https://gist.github.com/chrisjacob/833223

相關文章