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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -