Reputation: 19333
I did the following in Git, and now have a false dependency issue.
git checkout -b fixPlayer
git add -A
git commit
git checkout -b fixLaserAim
git pull
. I think this caused some sort of merge issue. So I switch back to master, update it (git checkout master
, git pull
), then switch back to my second branch, git checkout -b fixLaserAim
.git add -A
, and commit it git commit
.git push origin HEAD:refs/for/master
, and then switch over to my "fixLaserAim" branch, and do the same thing.Both of these changes appear in Gerrit, but for some reason, "fixLaserAim" notes that it is dependent on "fixPlayer". The two do not touch any of the same files, and I'm trying to find out how to remove this dependency in Gerrit, because it is blocking automated builds and the change eventually going into production.
How can I fix this issue?
Upvotes: 2
Views: 239