version control - Editing a patched file -
i have general workflow question: patch co-worker , further edit 1 of affected files. how isolate changes? i'd able keep changes when re-patching in latest changes co-worker. feel free point out special features of favorite version control system.
you can use git version control system , create different branches , co-worker. after can work on own branches out interfering each other. , can isolate changes/patch in commit.
when want "re-patch" latest version co-worker, can either use git merge merge co-worker's updates branch or use git rebase redirect branching point of branch newer version. git can automatically merge different versions unless there conflict.
Comments
Post a Comment