• Git,  Programming

    [Git] Linear History with Foxtrot Merge

    Git은 history를 관리하는 방식이 크게 두 가지로 나뉜다. Linear history 장점: history graph가 깔끔해진다. 단점: patch 반영 시 conflict resolution이 번거롭다. Non-linear history 장점: pull (fetch and merge) command로 수행이 쉽다. 단점: history가…