1

I'm using SVN and I'm not planning to migrate to Git for now. I'd like to try out AppHarbor but currently you must use Git to deploy code to AppHarbor.

I'd like to continue using SVN but push to AppHarbor's git repository from time to time. Is there an easy way to achieve this?

1

1 Answer 1

3

You can create a git clone of your SVN repository with:

git svn clone --stdlayout <URL-OF-YOUR-SVN-REPOSITORY>

... and keep that up to date by periodically running:

git svn rebase

... in the directory created by the git svn clone. You can then push from that git mirror of your Subversion repository to AppHarbor.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.