Git Workflows 讀書會 - 行前準備

[[ Index ]] 

--------

Git Workflows and Tutorials | Atlassian Git Tutorial

https://www.atlassian.com/git/tutorials/comparing-workflows/

--------

Q: commit 時沒有先 pull 而造成 conflict

RJ: 先 pull 解 conflict,merge 後再 push 上去

在本機或遠端使用 ssh 協定做 git 倉庫 ,只存放 .git

Feature Branch Workflow

feature branch 命名

RJ: 功能較不同的 feature 再開不同 branch

Carl: Git 鼓勵常開 branch 常 merge

Carl: 臨時的或 feature branch 應該在兩天內 merge 回來,不然可能是有其他問題

common conventions:

 

 

CI - Continuous Integration

CD - Continuous Delivery

難易度 (難->簡單)

Git flow -> Github flow -> Gitlab flow

參考: