How to use multiple repositories in Android Studio with GitHub

p. ld

I have 2 to 3 repositories in my GitHub account.First time i have done to push the project in first repository but now i want to push the project another repository from Android studio.How can i do this.Thanks .

VonC

The pure git way, would be to go to the root folder of your Git repo and add another remote.

cd /path/to/git/repo
git remote add repo2 https://github.com/<username>/<repo2>
git push --all repo2

But you can manually specify another GitHub repo url with:

 VCS-> Import into Version control -> Share Project on GitHub.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to switch repositories in Android Studio?

From Dev

how to make a project in Github with multiple repositories?

From Dev

Searching in multiple Github repositories

From Dev

GitHub - how to clone a repository into multiple repositories and push each to GitHub

From Dev

GitHub - how to clone a repository into multiple repositories and push each to GitHub

From Dev

How to use GitHub for Windows 2.0 with non-GitHub repositories

From Dev

Can I use multiple top level domains for my Github repositories?

From Dev

How to use multiple filters in android studio with firebase

From Dev

How do I merge between multiple forked repositories on GitHub?

From Dev

How to create a library on Github and use it through gradle dependencies in Android Studio

From Dev

How can I use this Github library in android studio

From Dev

How to use Sonatype Nexus Repository Groups with Github raw repositories?

From Dev

How to use jgit to clone the existing repositories to new github instance?

From Dev

Use Java to get Github repositories

From Dev

How to retrieve the list of all github public repositories of a user in android

From Dev

How to use multiple git repositories in one bndtools workspace

From Dev

How can I use QueryDSL on multiple mongo repositories?

From Dev

How can I use QueryDSL on multiple mongo repositories?

From Dev

How to use multiple git repositories in one bndtools workspace

From Dev

How to delete Repositories contributed to on github?

From Dev

Use Github pages on multiple repositories when one has a custom CNAME already?

From Dev

GitHub API - get details of multiple repositories

From Dev

Multiple github repositories inside a single repository

From Dev

How to use Android studio

From Dev

In GitHub, How to See at a Glance Whether Multiple Repositories Have Differences Between Specified Branches?

From Java

How to add an Android Studio project to GitHub

From Dev

How to push submodule to github using android studio?

From Dev

How to import a component found on GitHub in Android Studio?

From Dev

How could i integrate github with android studio?

Related Related

  1. 1

    How to switch repositories in Android Studio?

  2. 2

    how to make a project in Github with multiple repositories?

  3. 3

    Searching in multiple Github repositories

  4. 4

    GitHub - how to clone a repository into multiple repositories and push each to GitHub

  5. 5

    GitHub - how to clone a repository into multiple repositories and push each to GitHub

  6. 6

    How to use GitHub for Windows 2.0 with non-GitHub repositories

  7. 7

    Can I use multiple top level domains for my Github repositories?

  8. 8

    How to use multiple filters in android studio with firebase

  9. 9

    How do I merge between multiple forked repositories on GitHub?

  10. 10

    How to create a library on Github and use it through gradle dependencies in Android Studio

  11. 11

    How can I use this Github library in android studio

  12. 12

    How to use Sonatype Nexus Repository Groups with Github raw repositories?

  13. 13

    How to use jgit to clone the existing repositories to new github instance?

  14. 14

    Use Java to get Github repositories

  15. 15

    How to retrieve the list of all github public repositories of a user in android

  16. 16

    How to use multiple git repositories in one bndtools workspace

  17. 17

    How can I use QueryDSL on multiple mongo repositories?

  18. 18

    How can I use QueryDSL on multiple mongo repositories?

  19. 19

    How to use multiple git repositories in one bndtools workspace

  20. 20

    How to delete Repositories contributed to on github?

  21. 21

    Use Github pages on multiple repositories when one has a custom CNAME already?

  22. 22

    GitHub API - get details of multiple repositories

  23. 23

    Multiple github repositories inside a single repository

  24. 24

    How to use Android studio

  25. 25

    In GitHub, How to See at a Glance Whether Multiple Repositories Have Differences Between Specified Branches?

  26. 26

    How to add an Android Studio project to GitHub

  27. 27

    How to push submodule to github using android studio?

  28. 28

    How to import a component found on GitHub in Android Studio?

  29. 29

    How could i integrate github with android studio?

HotTag

Archive