I am trying to keep a read-only checkout of ,http://googleappengine.googlecode.com/svn/trunk/python into a git repository, which is stored as remote in github.
1) $git svn clone http://googleappengine.googlecode.com/svn/trunk/python.
2) $git svn rebase
-- Unable to determine upstream SVN information from working tree history
So I started reviewing the .git/config file to fix this problem, and this where I am at:
[svn-remote "svn"]
fetch = :refs/remotes/git-svn
url = http://googleappengine.googlecode.com/svn/trunk/python
[remote "origin"]
fetch = +refs/heads/:refs/remotes/origin/
url = [email protected]:...PRIVATE_URL...
[branch "master"]
remote = origin
merge = refs/heads/master
My only need is to fetch and merge last commit, and then push the changes to github. I've been looking for solutions and none seem to work for me so far, any pointers would be helpful.
Thanks in advance :)