atlassian sourcetree - How do you stay up-to-date in your feature branch (Git)? -


say i've cloned develop branch of project. then, off of develop, branched , called feature/abc.

as work on local feature/abc, point branched off of develop going more , more behind develop looks like. maybe fundamentally confused git process...

does mean feature/abc branch fall more , more behind develop since branched off of old version of develop? part of git process , have resolve , conflicts may arise after complete work on local feature/abc, commit , push remote feature/abc, , merge develop?

is there way pull in changes develop without merging work-in-progress changes on feature/abc? or whole point of should work on quick, easy changes can completed , merged feature branch doesn't fall behind?

you can periodically pull in changes develop branch...

git checkout develop git pull git checkout feature/abc git merge develop 

now feature/abc branch has latest stuff develop.


Comments

Popular posts from this blog

c# - Better 64-bit byte array hash -

webrtc - Which ICE candidate am I using and why? -

php - Zend Framework / Skeleton-Application / Composer install issue -