I have a git branch called shared_pictures_feature
. This branch has a bunch of new files that allows users to upload photos, share photos among friends, and rate photos. To ease my fellow developer's sanity during a code review, I want to break the shared_pictures_feature
branch into three separate branches for PR review.
Each branch should only contain the relevant files I need for a particular sub-feature. For example, the upload_photos_feature
branch should only contain code from the shared_pictures_feature
that deals with uploading photos. Here's my question, how do I do this with git? Is this even possible?