Search Results

5
votes
3answers
927 views

Is it possible to have a subversion repository as a git submodule?

Is there a way to add a subversion repository as a git submodule in my git repository? Something like: git-svn submodule add https://svn.foo.com/svn/proj --stdlayout svn-project Whe …
3
votes

Are CRLF lines ok in a Rails project deployed on Linux?

If it is ok for you to rewrite your repository's history (see problems with …
2
votes

Collapsing a git repository’s history

You can use git filter-branch with grafts to make the commit number 4 the new root commit of your branch. Just create the file .git/info/grafts with just one line in it containing the SHA1 of commi …