2

I have enterprise project, and I want use pull request mechanism but I can't use cloud service like GitHub or Bitbucket because of the rules of corporate security. Is it possible to arrange on your own server mechanism similar to GitHub pull request maybe install additional software?

Nuts
  • 31
  • 1
  • 5

1 Answers1

0

You can setup a local GitLab server: it does accept merge requests (similar to pull requests).

you can see more with "Pull request vs Merge request"

Community
  • 1
  • 1
VonC
  • 1,042,979
  • 435
  • 3,649
  • 4,283
  • GitLab work on *nix OS, at work, we use C#, Windows everywhere, so I would like a solution on Windows OS. (We installed git server on Windows OS under Cygwin). – Nuts Sep 18 '14 at 06:19
  • @RinatMullayanov Sure: use one of your Windows box, add Vagrant (https://www.vagrantup.com/blog/feature-preview-vagrant-1-6-docker-dev-environments.html) and Docker, and you can have a GitLab installation in a few minutes (that you can test and reinstall in seconds). Example http://translate.google.com/translate?hl=en&sl=ja&u=http://qiita.com/k-kagurazaka%40github/items/91f28f6835b3697ed5db&prev=/search%3Fq%3Dgitlab%2Bvagrant%2Bdocker%26client%3Dpalemoon%26rls%3DPalemoon:en-US – VonC Sep 18 '14 at 06:24
  • How install Ubuntu on the Vagrant in the Windows 7? – Nuts Sep 18 '14 at 09:30
  • @RinatMullayanov You need a Virtual box: http://aryannava.com/2014/04/05/installing-vagrant-on-windows-7-and-8/ – VonC Sep 18 '14 at 09:32