顯示具有 GIT 標籤的文章。 顯示所有文章
顯示具有 GIT 標籤的文章。 顯示所有文章

2024年4月21日 星期日

分支 ( branch )應用情境筆記

分支 ( branch )應用情境筆記

最近在協助新版控機制導入,匯整一下收集到的分支 ( branch )應用情境

Is there a way to cause git-reflog to show a date alongside each entry?


https://stackoverflow.com/questions/17369254/is-there-a-way-to-cause-git-reflog-to-show-a-date-alongside-each-entry

https://www.quora.com/How-can-I-make-git-reflog-show-date

2024年3月17日 星期日

Git Branching Strategies

 

Git Branching Strategies相關資料,先記下來,找時間理解

git在Windows下中文編碼顯示問題

git在Windows下中文編碼顯示問題

取出CommitID A 與CommitID B之間有Commit進來那些檔案?

 情境:取出Release20240313(8a2e0cd)  與DEV(8a2e0cd )之間有Commit進來那些檔案?

【狀況題】如何查某行程式誰寫的?

檢查每行程式碼的記錄

【狀況題】如何查某行程式誰寫的?

git blame


查看檔案中程式碼的作者

$ git blame <file_name>


若要搜尋指定行數,可以輸入下方指令。

$ git blame -L <from_line_number>,<to_line_number> <file_name>





https://git-scm.com/docs/git-blame

branching-strategy CASE1

以下是供不同協同作業型態客製,重新定義各分支 目的:達到不同需求不同上線時間,可進行開發與測試,需求上線可調整。 Master 分支、Develop 分支為主要分支: 不會刪除、不允許刪除,若有發生誤刪、遺失、受污染無法救回: Develop 分支 重新從Master開出分支 依...