Best way to centralise a php project (except bitbucket)

The structure is as follows:

  • A: this is the live/production website
  • B: this is the staging, which is a copy of live
  • C: this is the testing environment for designers

2 developer and 2 designers. Only developers are allowed to push changes to A. The designers work only with C, developers take the needed changes from C and push them to B and if everything is ok, then they push the changes to A. Everything is done manually as of now.

What is the best way to centralise the files so that multiple people can work on same files etc. As in, designers can work on the same css file and developers can work on same php files, if possible. The solution can have internet dependency, it is not an issue.

8

First, lets start out with “there is no on line provider that allows per brach access control lists as part of its base service.” It doesn’t exist as such.

What does exist, is the ability to do add commit hooks. For example, in git you could put a pre-receive hook on the server. This hook would check to see if the person doing the commit is one of the authorized committers for the branch and reject it if not. This doesn’t imply any sort of centralized server and it appears that github (for example) doesn’t do arbitrary pre-receive hooks. You could do this in house with a git server – just say “that one there is the master of masters” and go from there.

Lets instead look at what you are trying to accomplish. You want some people to be able to commit to a specific area of code that gets published to production. You could do this on github by setting access levels on the repo and having the devs be part of the write access team for that repo and the designers be part of the read access team. The designers would then fork the repo (which then they would have access to) and submit pull requests to the main repo for changes that are moved in. How staging and production are handled from this is an implementation detail.

On the other hand, if you are willing to shell out some money (you would if you are going for a github organization with private repos…) you may wish to look at Atlasssian Stash (I’m surprised this wasn’t considered given you are already using another atlassian product).

Atlasssian stash claims under its “enterprise: security” blurb:

Stash’s permissions levels make sure that the right people always have access to the right code. The simple yet powerful user interface makes it easy to manage permissions.

Set high-level global permissions, then fine tune them at the project, repository, or even branch levels with read/write/admin restrictions.

And, well, thats what you are describing you want. Stash is in essence an enterprise grade in house bitbucket server. As your enterprise is less than 10 users, the pricing for this is $10. Not $10/month, or $10/user. $10. Which is fairly hard to beat as a price.

So set up your branches, set who can commit to them, set up the pull request / code review feature and approval conditions or however you want the workflow to work and do it. For such a small organization I’d really be looking at stash as a viable alternative, especially if you aren’t already tied to other incompatible systems (a former employer considered it, but was already integrated with how github issues worked and so that didn’t go anywhere).

3

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Best way to centralise a php project (except bitbucket)

The structure is as follows:

  • A: this is the live/production website
  • B: this is the staging, which is a copy of live
  • C: this is the testing environment for designers

2 developer and 2 designers. Only developers are allowed to push changes to A. The designers work only with C, developers take the needed changes from C and push them to B and if everything is ok, then they push the changes to A. Everything is done manually as of now.

What is the best way to centralise the files so that multiple people can work on same files etc. As in, designers can work on the same css file and developers can work on same php files, if possible. The solution can have internet dependency, it is not an issue.

8

First, lets start out with “there is no on line provider that allows per brach access control lists as part of its base service.” It doesn’t exist as such.

What does exist, is the ability to do add commit hooks. For example, in git you could put a pre-receive hook on the server. This hook would check to see if the person doing the commit is one of the authorized committers for the branch and reject it if not. This doesn’t imply any sort of centralized server and it appears that github (for example) doesn’t do arbitrary pre-receive hooks. You could do this in house with a git server – just say “that one there is the master of masters” and go from there.

Lets instead look at what you are trying to accomplish. You want some people to be able to commit to a specific area of code that gets published to production. You could do this on github by setting access levels on the repo and having the devs be part of the write access team for that repo and the designers be part of the read access team. The designers would then fork the repo (which then they would have access to) and submit pull requests to the main repo for changes that are moved in. How staging and production are handled from this is an implementation detail.

On the other hand, if you are willing to shell out some money (you would if you are going for a github organization with private repos…) you may wish to look at Atlasssian Stash (I’m surprised this wasn’t considered given you are already using another atlassian product).

Atlasssian stash claims under its “enterprise: security” blurb:

Stash’s permissions levels make sure that the right people always have access to the right code. The simple yet powerful user interface makes it easy to manage permissions.

Set high-level global permissions, then fine tune them at the project, repository, or even branch levels with read/write/admin restrictions.

And, well, thats what you are describing you want. Stash is in essence an enterprise grade in house bitbucket server. As your enterprise is less than 10 users, the pricing for this is $10. Not $10/month, or $10/user. $10. Which is fairly hard to beat as a price.

So set up your branches, set who can commit to them, set up the pull request / code review feature and approval conditions or however you want the workflow to work and do it. For such a small organization I’d really be looking at stash as a viable alternative, especially if you aren’t already tied to other incompatible systems (a former employer considered it, but was already integrated with how github issues worked and so that didn’t go anywhere).

3

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Best way to centralise a php project (except bitbucket)

The structure is as follows:

  • A: this is the live/production website
  • B: this is the staging, which is a copy of live
  • C: this is the testing environment for designers

2 developer and 2 designers. Only developers are allowed to push changes to A. The designers work only with C, developers take the needed changes from C and push them to B and if everything is ok, then they push the changes to A. Everything is done manually as of now.

What is the best way to centralise the files so that multiple people can work on same files etc. As in, designers can work on the same css file and developers can work on same php files, if possible. The solution can have internet dependency, it is not an issue.

8

First, lets start out with “there is no on line provider that allows per brach access control lists as part of its base service.” It doesn’t exist as such.

What does exist, is the ability to do add commit hooks. For example, in git you could put a pre-receive hook on the server. This hook would check to see if the person doing the commit is one of the authorized committers for the branch and reject it if not. This doesn’t imply any sort of centralized server and it appears that github (for example) doesn’t do arbitrary pre-receive hooks. You could do this in house with a git server – just say “that one there is the master of masters” and go from there.

Lets instead look at what you are trying to accomplish. You want some people to be able to commit to a specific area of code that gets published to production. You could do this on github by setting access levels on the repo and having the devs be part of the write access team for that repo and the designers be part of the read access team. The designers would then fork the repo (which then they would have access to) and submit pull requests to the main repo for changes that are moved in. How staging and production are handled from this is an implementation detail.

On the other hand, if you are willing to shell out some money (you would if you are going for a github organization with private repos…) you may wish to look at Atlasssian Stash (I’m surprised this wasn’t considered given you are already using another atlassian product).

Atlasssian stash claims under its “enterprise: security” blurb:

Stash’s permissions levels make sure that the right people always have access to the right code. The simple yet powerful user interface makes it easy to manage permissions.

Set high-level global permissions, then fine tune them at the project, repository, or even branch levels with read/write/admin restrictions.

And, well, thats what you are describing you want. Stash is in essence an enterprise grade in house bitbucket server. As your enterprise is less than 10 users, the pricing for this is $10. Not $10/month, or $10/user. $10. Which is fairly hard to beat as a price.

So set up your branches, set who can commit to them, set up the pull request / code review feature and approval conditions or however you want the workflow to work and do it. For such a small organization I’d really be looking at stash as a viable alternative, especially if you aren’t already tied to other incompatible systems (a former employer considered it, but was already integrated with how github issues worked and so that didn’t go anywhere).

3

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Best way to centralise a php project (except bitbucket)

The structure is as follows:

  • A: this is the live/production website
  • B: this is the staging, which is a copy of live
  • C: this is the testing environment for designers

2 developer and 2 designers. Only developers are allowed to push changes to A. The designers work only with C, developers take the needed changes from C and push them to B and if everything is ok, then they push the changes to A. Everything is done manually as of now.

What is the best way to centralise the files so that multiple people can work on same files etc. As in, designers can work on the same css file and developers can work on same php files, if possible. The solution can have internet dependency, it is not an issue.

8

First, lets start out with “there is no on line provider that allows per brach access control lists as part of its base service.” It doesn’t exist as such.

What does exist, is the ability to do add commit hooks. For example, in git you could put a pre-receive hook on the server. This hook would check to see if the person doing the commit is one of the authorized committers for the branch and reject it if not. This doesn’t imply any sort of centralized server and it appears that github (for example) doesn’t do arbitrary pre-receive hooks. You could do this in house with a git server – just say “that one there is the master of masters” and go from there.

Lets instead look at what you are trying to accomplish. You want some people to be able to commit to a specific area of code that gets published to production. You could do this on github by setting access levels on the repo and having the devs be part of the write access team for that repo and the designers be part of the read access team. The designers would then fork the repo (which then they would have access to) and submit pull requests to the main repo for changes that are moved in. How staging and production are handled from this is an implementation detail.

On the other hand, if you are willing to shell out some money (you would if you are going for a github organization with private repos…) you may wish to look at Atlasssian Stash (I’m surprised this wasn’t considered given you are already using another atlassian product).

Atlasssian stash claims under its “enterprise: security” blurb:

Stash’s permissions levels make sure that the right people always have access to the right code. The simple yet powerful user interface makes it easy to manage permissions.

Set high-level global permissions, then fine tune them at the project, repository, or even branch levels with read/write/admin restrictions.

And, well, thats what you are describing you want. Stash is in essence an enterprise grade in house bitbucket server. As your enterprise is less than 10 users, the pricing for this is $10. Not $10/month, or $10/user. $10. Which is fairly hard to beat as a price.

So set up your branches, set who can commit to them, set up the pull request / code review feature and approval conditions or however you want the workflow to work and do it. For such a small organization I’d really be looking at stash as a viable alternative, especially if you aren’t already tied to other incompatible systems (a former employer considered it, but was already integrated with how github issues worked and so that didn’t go anywhere).

3

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật