Is this possible to have 2 git repositories for one directory?
Currently I have Ruby on Rails application, it is stored on BitBucket. Now I want to push this application in another repository (eg GitHub / GitLab). But I want to keep this directory connected to BitBucket.
The main ideas is my company's GitLab have unlimited users to join, but BitBucket have limited users. So meanwhile my team working on my company's GitLab, I can pull the latest code from GitLab and then push the code into BitBucket.
Or, there are any solutions to make it happens?
Currently I am thinking using DropBox for the application, so my team can working in shared folder and I can keep push the code into BitBucket. But I think this solution will bring my team into big conflict.
==== EDIT ADDITIONAL QUESTIONS ====
If I use remote so there will be :
origin git://......git
myteam git://......git
So when I want to pull from myteam repository it will be git pull myteam develop
And then when I want to push into origin repository it will be git push origin develop
Is it right? If so, what about the name of the developer on my origin repository?