You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks very much for writing this very useful tool. I don't so much have an issue (as I have now managed to do a successful migration from RTC to Git using it) - just a point about documenting the usage: after the migration script finished, I didn't know where the actual Git repository was created.
I found that to find the repo and push to my git server, all I had to do (but wasn't aware of this) was:
with config.ini containing:
GIT-Reponame = <repo_name.git>
Directory = <working_dir>
then:
the local repo is in <working_dir>/<repo_name>
and to push to git server:
git remote rm origin
git remote add origin < git server url >
git push
Thanks.
The text was updated successfully, but these errors were encountered:
Hi,
Thanks very much for writing this very useful tool. I don't so much have an issue (as I have now managed to do a successful migration from RTC to Git using it) - just a point about documenting the usage: after the migration script finished, I didn't know where the actual Git repository was created.
I found that to find the repo and push to my git server, all I had to do (but wasn't aware of this) was:
with config.ini containing:
GIT-Reponame = <repo_name.git>
Directory = <working_dir>
then:
the local repo is in <working_dir>/<repo_name>
and to push to git server:
git remote rm origin
git remote add origin < git server url >
git push
Thanks.
The text was updated successfully, but these errors were encountered: