Questions tagged [gitlab]

GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis.

GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis.

35 questions
23
votes
1 answer

What is best practice for handling PRs addressing security vulnerabilities in public repo?

How should an open source project with a public repository best handle pull requests (PRs) that address securely reported but not yet publicly disclosed security vulnerabilities? I'm involved in an open source project with several hundred…
Joe Murray
  • 341
  • 1
  • 6
20
votes
1 answer

Gitlab workflow, forcing code review or merge request on branch

I'm working towards implementing Gitlab at my company with a workflow strategy. My idea is that developers will be given access to repositories but, anytime they try to commit, their code must be reviewed. I know I can have them create a branch…
Mike
  • 483
  • 1
  • 3
  • 12
16
votes
2 answers

CI runner on same server of GitLab?

I'm setting up a GitLab server in my company and now I'm adding GitLab CI to it. Before start this task I'd like to understand if there are any disadvantages running my runners on the same server used by GitLab and GitLab CI. I've read that there…
Fez Vrasta
  • 556
  • 1
  • 5
  • 12
8
votes
1 answer

Git branch model with QA and branches

We would like to use Driessen's git branch model but we also have QA side. I think I understand how this git flow works but I'm still not sure about testing. For example, I have five new features, each of them is in my own branch and I want to give…
7
votes
1 answer

Visual Studio, Git, and common code

I'm looking for some advice on how I should arrange a large new project I'm working on to allow it be more easily managed in Git (using GitLab), and developed in Visual Studio. To give an idea of scale, this is an entire server backend which'll…
Barguast
  • 171
  • 4
4
votes
2 answers

Git commit hashes and Git merging between branches

We have a scenario where we'd like to use two branches in our git workflow, otherwise known as develop and master. The current flow is as follows: Create feat-branch - this branch will be based off of master. Make your changes in feat-branch, then…
a clue
  • 41
  • 2
4
votes
1 answer

forking boilerplates? or simply cloning them?

Using gitlab/github. I created boilerplates for all my projects so I've: wordpress-boilerplate html5-boilerplate laravel-boilerplate ror-boilerplate I'm debating myself if/when starting a new project I should fork boilerplate and thus save the…
user49346
3
votes
2 answers

What's the best way to get GitLab Docker runners and Python tox to work together?

I'm trying to get a better understanding of how tox and GitLab CI (with docker runners) would work together, as they seem to have a bit of overlap in what each does. I think I may be missing something on exactly the purpose of tox as well. Here's…
3
votes
1 answer

Git structure for multi platform projects

Currently I use SVN for my project and the structure looks like this: trunk/SharedLibrary/ trunk/platform/wordpress/ <- platform base directory trunk/platform/wordpress/SharedLibrary <- external with relative path…
Roland Soós
  • 131
  • 1
3
votes
2 answers

how to handle small change requests in the automated deployment process

I've setup a Gitlab server to manage several different Laravel Apps. I'm also able to configure the Gitlab CI to deploy the code to the development and production sites. Everything is kind of streamlined. The problem is Clients want to make many…
Raghavendra N
  • 181
  • 1
  • 1
  • 4
2
votes
3 answers

Git project organization

My company currently has SVN as main version control and we are in process of migrating to Git. Doing that is a perfect chance to do a structure reorganization. Before I get to that let me describe current situation and our use cases. We have one…
Norgul
  • 149
  • 5
2
votes
1 answer

continuous deployment of web application built with multiple packages

Our react web application is broken down to multiple components. Some of these components are part of the same git mono repo and some live in a different repo. Now, to implement a bug fix we have to update the changes in one repo, release a version…
NM Roku
  • 29
  • 1
2
votes
2 answers

is there a way to know the type of web based version control application from a git url?

Background I'm researching the ability to add some services on top of git web hosts (ie github, gitlab, bitbucket etc, I'm not even sure what they're called, I borrowed that term from the github wiki). An example of what I'm trying to do is…
abbood
  • 259
  • 3
  • 12
2
votes
2 answers

How to keep track of maven dependency updates in projects?

How do you keep track of maven dependency versions? Let's say you are using version 1.0.5 of an library. groupIdName artecfact-id 1.0.5 But some…
Joergi
  • 163
  • 7
1
vote
1 answer

Possible to create a git repo that will comprised of files residing in NFS and files in a system directory?

I want to create a git repo that will include scripts in /nfsdrive/sbin/ and the services that activate these scripts—which reside in /etc/init.d/. I've searched the documentation and the relevant discussions, but could not find if the above is at…
boardrider
  • 113
  • 4
1
2 3