queryMaster
queryMaster

Reputation: 29

Commit and Push Enterprise Application Project into BitBucket

I have an Enterprise Application Project, let's call it iMe, that splits into 5 different projects:

- iMe
- iMeClient
- iMeEJB
- iMeEJBCLient
- iMeWeb

How can i push it into BitBucket, without having to create 5 different repositories and committing one at a time?

Upvotes: 0

Views: 63

Answers (2)

Thilo
Thilo

Reputation: 262494

You can put all these five projects into a common root directory and use that as your repository. Then you'll have just one repository. Downside is that you cannot have per-project access controls.

Upvotes: 1

Smallware
Smallware

Reputation: 72

As the repositories are different, I don't think that you can do what you want in one command line. But there is always a solution: you can write a script (in bash ?) that preforms all the pushes.

Upvotes: 0

Related Questions