Is it possible to change the GitHub repository connected to a Repl?
I have moved my GitHub repository to new one, but it looks like there is no way to reconnect existing repl to the new GitHub repository.
Is there a way?
ParagonX
It is possible:
-
open up the shell and type
git remote rm origin
-
go to version control
-
click "connect to github" and then you can link your repo or create a new one!
Hope this helps :)
Coder100
Hi! Unfortunately, that is not possible yet. However, you can manually make the push to the new repo:
Hit ctrl+shift+s
:
git remote add origin [url] git add . git commit -m "What you did" git push -u origin master
You will be prompted to log in.
gibbsfreenergy
No you can't connect two different repls to each other! You may have to merge it together! So sorry abt that! If this answered your questions then please choose this as the correct answer!
@Ailrun Hi Clare,
This feature isn't available until now!
But you can do it but you have to follow this tutorial and this tutorial.
And I am sure that you can do it!
Thanks!
Hope this helps
Please mark my answer if this helps