I'm curious if git will do the following.
I have a project which has been commited and contains JPGs a,b,c which are of Mt.Rushmore.
I now create a new branch of the project (2) and replace files a,b,c with new files which have the same names but are of Yellowstone Park and commit that.
My intention is to evolve both projects independent of one another even though in essence they are identical (they will most likely never change other than the creative JPG files that are associated with each).
Am I correct to assume that in switching branches I can expect the files to switch back and forth? And if so, what is the git specific command to have the relevant files deleted/downloaded from the repo as I move between the branches?
If this isn't the right way to handle this, what is?
To be specific I have an Android project where the java code-base will likely never change but the layouts will have different art depending on various criteria and I would prefer not to split them up into two separate projects because they have the same package name and all that and it will become very messy.