[How to] send a PR to Coqui TTS from your old mozilla fork #13
Unanswered
erogol
asked this question in
General Q&A
Replies: 1 comment
-
ignore (move the thread up again) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Go ahead and fork 🐸 TTS on Github.
Clone it to your local system.
$ git clone https://github.com/<your_username>/TTS
Add mozilla fork as another remote origin.
$ git remote add origin2 https://github.com/<your_username>/TTS/
Fetch the branches from your mozilla fork.
$ git fetch origin2 l #fetch all the branches
Pull all the branches from your mozilla fork.
$ for b in `git branch -r | grep -v -- '->'`; do git branch --track ${b##origin2/} $b; done
Push branches to your 🐸 TTS fork.
$ git push --all origin #push all the branches
$ git push origin <your_target_branch> #push a single branch
Send a PR on Github 👏 for the desired branch.
Beta Was this translation helpful? Give feedback.
All reactions