On Wed, Nov 11, 2009 at 2:00 PM, Daniele Segato <daniele.bilug@xxxxxxxxx> wrote: > On Wed, Nov 11, 2009 at 1:14 PM, Yann Simon <yann.simon.fr@xxxxxxxxx> wrote: >> I am in the same situation. >> What I did is not to add these files to .gitignore. >> On my "work" branch, I commited these files in a separate commit >> "local changes". >> When I want to push to svn, I switch to the branch "master", and >> cherry-pick the commit I want to push. >> $ git checkout master >> $ git svn rebase >> $ git cherry-pick work >> $ git svn dcommit >> $ git checkout work >> $ git rebase master >> >> This workflow could maybe be better. Suggestions welcome. > > hum > but I don't want to push those files If you follow Yann's advise you won't push to the svn repo the "private" files, they will be /only/ stored in you local repo. The cons of that approach is that you will have to cherrypick all the commits you want to push to the svn repo from the "working branch" to the master branch. Ciao, -- Paolo -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html