About 1,105,288 results (5,067 milliseconds)

Merging between branches with gerrit

https://groups.google.com/g/repo-discuss/c/JehujEECFQ8
different things with Git. > Unfortunately, since this change has a Change-Id, it doesn't show up > in gerrit.

Gerrit and cherry-picking changes across branches

https://groups.google.com/g/repo-discuss/c/e48GqA92TSA
another type of commit. You probably would need to write a script that does something like: #!/bin/sh c=$(git rev-parse --verify ...

Multiple changes in a single project, uploading only one?

https://groups.google.com/g/repo-discuss/c/Pj8E-8j4Vk8
made a second change in the same branch (the second one logically ... repo start foo . git commit -a -m A repo upload ... git commit -a -m B repo ...

Re: Setting change-id when doing git merge

https://groups.google.com/g/repo-discuss/c/L_6fpfKV7lw
Feb 15, 2023 ... I am using git merge to merge changes from one branch to another ,I notice the change-id is not preserved when doing this?

Working on another branch while a review is ongoing on master

https://groups.google.com/g/repo-discuss/c/vDtRm0T66M0/m/6Hr0M9BWu2oJ
Jul 29, 2011 ... on open changes can be a hassle. git checkout topic2 git rebase --onto topic1 A. Walk the history backwards until you hit commit A or any ...

automatic cherry-pick from one branch to another

https://groups.google.com/g/repo-discuss/c/rvVGxBeCRdQ
Dec 2, 2019 ... ... change is merged to feature branch automatically it should get into master branch ... It is different from a github (pull-request based) workflow.

Merge after importing a project to gerrit fails because of missing ...

https://groups.google.com/g/repo-discuss/c/1irZMIM5TZE
Jan 24, 2017 ... After this migration, a user tried to merge recent changes from master into some other branch he's working on. ... git, but it didn't use Change- ...

How to commit changes to the branch only with approval in gerrit?

https://groups.google.com/g/repo-discuss/c/kdXwtuBlnRM
Jul 7, 2011 ... Which one is correct? > Is there another method? The quick way here would be to just copy the repository itself from server A into gerrit's git ...

Pushing to Gerrit fails unexpectedly with 'no new changes'

https://groups.google.com/g/repo-discuss/c/NeuQmv4LdOc
$ git push ssh://user@host:29418/my/project HEAD:refs/for/master ... succeeds. If to push the old commit to another branch I would of course expect a new

Git Beyond the D in DVCS · Los Techies

http://feedproxy.google.com/~r/LosTechies/~3/pcNxv9Ae5PI/
Oct 14, 2011 ... ... branch and modified in another, overlapping Visual Studio project file changes, etc. ... Or you can use `git commit -a` to stage all changes ...

Gerrit and development branches issues

https://groups.google.com/g/repo-discuss/c/tmiyz6GCRaw
May 27, 2011 ... and do a git pull <your diverged branch> to pull in the changes and merge it into master. Another option is probably to just rebase your changes ...

confused between GIT & Gerrit

https://groups.google.com/g/repo-discuss/c/UJJCb-8_kt4
Apr 8, 2012 ... Can we "git push" changes on one branch to another branch on gerrit ... If you do a regular "git pull" you'll get a merge commit

Your change could not be merged due to a path conflict

https://groups.google.com/g/repo-discuss/c/ozvshkBSNA8
May 10, 2010 ... to use Git, because it takes advantage of some of the more powerful features. Things like amending a commit, rebasing a branch, etc. So we ...

Gerrit workflow problems.

https://groups.google.com/g/repo-discuss/c/7vhPp90D2Jg
Jan 13, 2012 ... ... git commit --amend command can be used on that commit. ... To merge a central branch into the central master branch, simply create merge commit ...

gerrit push to a different branch than what my workspace was set to

https://groups.google.com/g/repo-discuss/c/XIIokDkzlnQ
Oct 24, 2014 ... We are using git/gerrit for our source control. One of our devs recently pushed a commit just like always, but pushed to the wrong target branch ...

"forge committer" required when pushing a change on top of an ...

https://groups.google.com/g/repo-discuss/c/SdfeyPucQ-4
Jul 3, 2018 ... A developer pushes (to refs/for/master) a merge commit that merges one change from another branch. ... git.receive.ReceiveCommits : [gda ...

Shared topic branches: how to collaborate

https://groups.google.com/g/repo-discuss/c/GvQOakZjAlU
devB$ edit, commit, git push origin HEAD:refs/for/topic. Rinse, wash, repeat ... are "no new changes", and letting the commit go through to a sandbox

how do I switch branches by repo

https://groups.google.com/g/android-building/c/rtH5ZbJC7qU
-the list of projects changes from one branch to another, so the notion of ... git branch -a #remember the branch name you want to checkout > > 3. git ...

cherry-picking gerrit patch - am i doing it right?

https://groups.google.com/g/repo-discuss/c/FcvZUYBB7hQ
Nov 21, 2013 ... git commit --amend -will open the commit editor and I would copy a change ID of the change in question as a comment. 5. push to gerrit. (all ...

How to rebase one change on top of another change ?

https://groups.google.com/g/repo-discuss/c/A8jBo6qaRQc
Feb 24, 2014 ... <paths>' or 'git rm <paths>' and commit the result with 'git commit'. ... > to create a new branch with `git checkout -b rebasing`) > > git ...