I've just started using git-svn
to allow for more fine-grained branching and committing than I'd be able to use with the remote, controlled-by-another-company svn repo we're working in.
I've now set up my .gitignore
and .gitattributes
files for the branch, in my workspace, and I would prefer to be able to submit (and thus track) them in my local git repo. However, when dcommit
ting my changes -/hardback to svn, those files must not be submitted back into the svn repo.
I can't just ignore the folder they're in either, however, because of course they're in the root of the workspace.
Does anyone have a solution? (apart from ignoring them in the git-svn branch, sym-/hardlinking them in from another location and adding them to a git repo there--it's overcomplicated and they're not in their corresponding branch anymore then, so I'd rather try to find a different solution in that case).