Gerrit is a web based code review and project management for Git based projects.

learn more… | top users | synonyms

0
votes
2answers
16 views

Gerrit Add Reviewers

I currently have a project setup in Gerrit and each time I submit a change I have to manually add a group of reviewers to each change, is thier a mechanism that allows to add a reviewer group to a ...
1
vote
1answer
40 views

Gerrit unable to clone

I am trying to create a gerrit review system and was able to successfully get the gerrit to run on port 8084 and review is being on 29429 port successfully. When I am trying to run the git clone ...
0
votes
0answers
22 views

git unpack error on push to gerrit

On push of a new branch to a gerrit server we encounter the following error: de@roma:~/git-hate/www$ git push origin landingpage Counting objects: 149, done. Delta compression using up to 2 threads. ...
0
votes
3answers
21 views

What environment variables are passed go Jenkins when using the Gerrit Trigger Plugin?

I'm using the Gerrit Trigger Plugin to kick off Jenkins builds, but haven't found a good place where all of the environment variables are documented. Does such documentation exist?
0
votes
2answers
27 views

Gerrit with users outside of LDAP

So I am using LDAP for authentication however we have an external developer (customer who contributes to the code) which i wish to give access to the git repos but also the web ui interface. Can this ...
0
votes
1answer
23 views

Eclipse cannot connect to remote git server via ssh egit funny refname [remote rejected]

I have set up a git repository through Gerrit. I am trying push my local repository to a remote one i just created with Gerrit (ssh Linux box). I have imported my RSA keys into both Gerrit and Eclipse ...
0
votes
1answer
18 views

Gerrit Web UI URL

I'm quite new to Gerrit.I'm getting Permisson denied(public key) while running ssh command .I want to add rsa key to my Gerrit profile.But I'm not able to take the Web UI.I tried localhost:29418 But ...
0
votes
1answer
53 views

Cannot push tags in Git

I am unable to push the annotated tag in my git remote repository. All the access permission have been provided in gerrit. eg. [refs/*] I am creating the tag using the below command git tag -a v1.0 ...
0
votes
3answers
59 views

push a specific commit from one remote branch to another remote branch

I have 2 remote branches, dev and rls. We are working on the dev branch currently. My rls branch is empty/untouched. I want to move a specific commit(sha-1 hashes) from dev to the rls branch. Please ...
0
votes
0answers
39 views

What submit type to use in Gerrit with a branching workflow?

First some information: 1 base code in master branch 3 branches with projects that use the same base code, but have different looks / and some different code. Workflow: Work on branch 1/2/3 Not ...
-1
votes
1answer
39 views

How to run Gerrit on Windows with basic setup [closed]

I was trying to Google for answer and figure it out myself for few hours already but no success. My idea is something like Gerrit's Quick get started guide which unfortunately does not work under ...
0
votes
1answer
31 views

How to check commit present on particular branch or not

My intention is to verify whether the particular commit is present on a given branch or not. I know we can use git branch --contains commit id But it needs that repo to be cloned in your local ...
0
votes
1answer
35 views

Gerrit - how to disallow direct push to “master” but allow to other branches

I want to set up configuration described below: Registered user can not push his changes directly to master. He has to push these changes for review: "git push origin master" - it should be ...
4
votes
2answers
58 views

Are there any problems if using a shared repository between SVN and Git, without git-svn?

Background In our distributed development teams, we have a centralized SVN repository placed remotely which is used for multiple teams committing there source code. In order to improve local ...
1
vote
4answers
113 views

Error when trying to 'mvn clean install' Gerrit's replication plugin

This is probably a newbie question, but I'm new to Maven. I'm trying to build Gerrit's replication plugin, "since the master branch (and thus Gerrit 2.5) no longer supports replication out of the ...
2
votes
2answers
60 views

Can Gerrit go Out-Of-Sync

I am new to Git and Gerrit. I want to know if I make first few commits via Gerrit and then make some commits directly to Git by bypassing Gerrit will it result in Gerrit going out-of-sync? Will ...
0
votes
0answers
19 views

Gerrit asks for rebase when tried to submit change

I am using gerrit for code review. While merging changes I get error like "rebase you change". I think its because of parent changes. I wan to know what is the parent(s) in this case. And how gerrit ...
0
votes
1answer
32 views

one Jenkins server with several gerrit servers

I need a solution for handle one Jenkins server connecting to several Gerrit servers. As far as I know, the Gerrit plugin in Jenkins can only fillin one URL. Anyone knows if it is possilbe to config ...
0
votes
3answers
84 views

How to create a new Patchset in Gerrit?

I am new to Gerrit and want to create a new Patch when new changes are submitted. i setup Gerrit with this guide https://review.typo3.org/Documentation/install-quick.html Then i try to create a new ...
0
votes
0answers
29 views

error: addinfo_cache failed while cherrypicking

I am getting the followinge error while cherry-picking a gerrit...does anyone have info on what this means and why would anyone see it? error: addinfo_cache failed for path 'ROE/NAS/src/abc.c
0
votes
1answer
128 views

How does the Gerrit- trigger plugin in Jenkins works?

I am trying to understand how does the gerrit-trigger in Jenkins works in details? Also, how is the test for the triggered cose is being invoked ? Thanks,
1
vote
1answer
46 views

Parsing output of an ssh command using awk

I have an ssh command which gives the following output, I want the ssh command to be modified such that the url and jirano output comes side-by side if there is jirano, second change does not have ...
0
votes
1answer
61 views

How to build project automatically in jenkins when there is push to gerrit

please tell me in simple steps with snapshots how to set up gerrit build in jenkins... can two repos be given to set up for gerrit build in one job in jenkins... when the code is pushed to gerrit the ...
3
votes
4answers
85 views

Grep functionality with Git Log command

I need to use the Git log command to extract Commit Id, commit subject where commit-body contains a specific word. I also need to print only those lines from the commit body that contain that word. ...
1
vote
1answer
58 views

GIT: merge two branches into a new one without dependencies in Gerrit

I have two branches in my local repo: branch_1 and branch_2, each is based on the same commit A and contains several commits (heads are A1 and A2 correspondingly). I pushed both of A1 and A2 to ...
0
votes
2answers
29 views

tagging a list of gerrits as a label

Is there a way to tag a list of gerrits to a label...after tagging,if I do a repo sync of this label,these gerrits should get synced to workspace..is there an option like dat?has anyone done this ...
0
votes
1answer
24 views

make gerrit abort commit push if its message is invalid

I am working with gerrit 2.5.1. I want to abort commit push from an user if its message does not comply with a format forced by the company. So, imagine that i want that users only be able to push ...
0
votes
1answer
45 views

Gerrit/git: rename java class to existing (remove middleman)

We use git, with Gerrit as a code review tool, and we have a model class (MyModelImpl) with associated interface (MyModel). We have realized that this setup is overkill, so we want to remove the ...
0
votes
1answer
39 views

API to retrieve recent commits

I have some project using a git repository with gerrit and gitweb available on the web. I am looking for an API via which I can do an HTTP request to get the commits made in the last 10 seconds. ...
0
votes
1answer
78 views

Create new Gerrit project from pre existing git repository

I'd like to introduce Gerrit on the project I'm working on. At the moment we already have a git repository with some code committed on it. I've initialized the project as follows: java -jar ...
1
vote
1answer
21 views

changes dependencies graph

Is there any external tool or some way to visualise dependency graph between Gerrit's changes ? In our workflow we often want to find the newest change/patchset starting from some change. As we not ...
0
votes
1answer
51 views

Is there a way to restrict push access to users on a local git repo?

In the currently workflow, we have a centeralized git repo. This git repo is supposed to be "blessed", where code is heavily QA'd and Verfied. This means any developer is not allowed to push to this ...
0
votes
1answer
112 views

Gerrit - how to auto publish change after Jenkins run

I work with Git + Gerrit + Jenkins. I would like Gerrit to automatically submit a change after Jenkins success run. Is there any way to skip the review part (only verify is needed) and auto submit ...
0
votes
2answers
116 views

git cherry pick - range of commits and exclude some in between

I normally use the following git command to cherryppick a range of gerrits..no how do I exclude a couple gerrits in between.. can the below command be modified or is there one where we can pick a ...
1
vote
1answer
38 views

Error initializing gerrit plugin project

So I'm trying to follow the documented instructions in the Gerrit docs (version 2.5.2) that explain how to set up your gerrit plugin project (docs here). I started with the presentation here which ...
0
votes
1answer
72 views

changing gerrit's canonical web url

I have had an issue with setting up my gerrit server. The machine has Ubuntu 12.04 LTS Server 64-bit installed on it. I am setting up git and gerrit as a way to manage source code and code review. I ...
1
vote
1answer
54 views

How to disable direct push to Gerrit?

While working with Gerrit, the expected push is: git push origin HEAD:refs/for/branch But some bad guys seems to do this in a simple way(they learned from some Git manual): git push origin or ...
0
votes
1answer
53 views

setting up gerrit

I have found the documentation on installing Gerrit to be not very good. Managing databases is not my strong suit so it is not too friendly to me. What I have: I have the gerrit.war file sitting on ...
1
vote
1answer
94 views

Replicating Git Notes between 2 central git servers

I want to transfer ALL git notes refs (refs/notes/*) from one central git repository to another. Assuming the git central servers A and B, and I want to replicate git notes from A to B. I tried to ...
1
vote
1answer
57 views

How to update gerrit repos with changes submitted directly to git?

I am currently dealing with a situation where some people are test driving gerrit for code review, but those not yet using it can still push code directly to the remote git repo. The thing is, ...
0
votes
0answers
62 views

Gerrit REST API without Auth

I'm working on a script to monitor my review (as a owner or as a reviewer). As a owner easy to list it, but as a reviewer I can only display all review. My problem is: I can't list reviews where "I'm ...
-5
votes
1answer
89 views

error while doing git push origin/HEAD [closed]

I am getting the following error when trying to do a git push to a remote branch...I can see all the changes on remote branch in my git log..I looked at other posts on thison Stack overflow and tried ...
0
votes
1answer
123 views

gerrit and OpenID_SSO

I set up a gerrit server. For authentication gerrit allows among others OpenId and OpenId_SSO. The first one works fine, but requires me to enter the whole long OpenId. As I only want to allow a ...
0
votes
1answer
145 views

gerrit -application error server error connection refused

In gerrit,While registering with a open id(gmail) for the first time it got registered no issues ,but when I add another user with a open id(gmail) [settings->Contact Information->Register New ...
0
votes
1answer
56 views

how to get data for a gerrit

I use the following query to get the data of all the open gerrits in the project "platform/vendor/company/code",now i ONLY want to get data for a specific gerrit..lets say there is a gerrit #12345..I ...
0
votes
1answer
150 views

Gerrit workflow - no new changes

I am currently having some problems with our gerrit workflow. I have pushed some code for review but the review has been rejected with a -1 and I need to submit another patchset to this same review. ...
2
votes
0answers
78 views

change-merged gerrit hook

I'm trying to make alternative to post-receive hook, but may be i something did wrong. Does this hook work with push commit to master branch (without /for/ control) through gerrit (i have permission ...
4
votes
2answers
202 views

Import repository from git to gerrit

There are 2 questions about gerrit. 1) How to convert or import already existed git repository to gerrit format (there were a lot of commits without gerrit control, i wanna simply push those commits ...
0
votes
1answer
84 views

Merged Gerrit change not showing up when fetching from remote git repository

I've been testing a git/Gerrit integration and setup a test repository that is mirroring a remote repository. When I cloned the repository within the GERRIT_SITE/git directory I executed the ...
1
vote
1answer
179 views

The HTTP server did not provide the username in the REMOTE_USER header when it forwarded the request to Gerrit Code Review?

1.I have configured gerrit on port no 8081 and apache on 80 2.gerrit.conf looks like: *** Gerrit Code Review 2.5.1 *** *** Git Repositories *** Location of Git repositories [git]: *** SQL ...

1 2 3 4 5 6