Pull requests are made when a developer forks a project, makes changes, and then wants those changes to be included in the main project again. These were made popular by Github and Bitbucket.
Questions tagged [pull-request]
2166 questions
0
votes
0 answers
Github Copying Branch and collaborator setting between Repos
I have a standard repo with the permissions, collaborators, and branch controls (e.g. on PRs etc) which are optimal to our group.
Is there a way of copying these setting to new and existing groups within the github UI?
Faling that, are them some…

SzS
- 161
- 1
- 4
0
votes
0 answers
Verified commits in PR are showing up as unverified in target branch post merge
Can someone help me with this ??
I am following the below steps to push my changes to the main branch:
Create a temp branch out of latest main
Edit files and stage my changes
Commit to the branch in local using below command:
git commit -m…

John Cooper
- 41
- 4
0
votes
2 answers
Github: Find PRs that I have reviewed (but not created)
I am trying to figure out how many PRs I have reviewed in the last 6 months, but haven't been able to extract this info from Github.
This answer, to a very similar question suggests that you should use this:
type:pr…

sixtyfootersdude
- 25,859
- 43
- 145
- 213
0
votes
0 answers
Can't create the remote branch for PR: "git push -u origin tmpt-branch" failed
I want to make a temporary branch for PR for the changes I made. I did the following workflow:
clone the default master branch: git clone
create and switch to the local branch based on the main branch:
git checkout -b my-tmp-branch…

user903151
- 55
- 1
- 1
- 6
0
votes
0 answers
Merge Commits seem to change files on Github Pull Request
We have two branches, master and test, as name suggest test is being used for feature testing and master is production. We firstly test our features and then move them into production on Github. After merging master branch new feature branches are…

hcacode
- 75
- 1
- 9
0
votes
1 answer
How to add a new tab in pull requests in Azure-Devops
In below image I can see that there are multiple tabs when we create pull request like Overview, Files, Update, Commits, etc. I want to add a new tab in pull request. I tried searching on internet but was not able to find much. It will be great if…

Mandar Sadye
- 689
- 2
- 9
- 30
0
votes
0 answers
git pull not working on my working branch
I have two branches one to pull and the other to work from my instructor made. The main branch is pulling but the working branch isn't. I tried pulling from the working branch, this is the message I'm getting.
" There is no tracking information for…
0
votes
1 answer
Git changes disappear when saving the file
When I want to Stage my changes on my branch, I click the plus sign (Stage) in Visual Studio 2019's Git Changes panel on the right side of the changed file. Usually after that the files goes in the staged section and after writing a commit message I…

M3VRIX
- 9
- 3
0
votes
1 answer
does sonarqube pull request analysis needs compiled java code
I am working on a Java project and looking to deploy SonarQube on every PR also on our feature branches (not just main) as part of our shift-left strategy. However, we don't want to have to compile Java code every time. Is it possible to run…

nnay84
- 167
- 1
- 12
0
votes
0 answers
How to replicate checkout of Github Actions on pull request, locally?
As stated in this Github Actions documentation...
Note that GITHUB_SHA for this event is the last merge commit of the pull request merge branch.
If you want to get the commit ID for the last commit to the head branch of the pull request,
use…

caeus
- 3,084
- 1
- 22
- 36
0
votes
0 answers
Playwright report per Pull Request available on GitHub Page
I have a demo repo https://github.com/sh977218/Angular-with-Playwright to try to run playwright with Angular on GitHub's action and publish the result to GitHub Page. I'm able to achieve that, but I'd like to improve it by publish each Pull…

Peter Huang
- 972
- 4
- 12
- 34
0
votes
0 answers
How to get Azure Boards work item info for recent GitHub PRs in a given repo?
We have Git repos in GitHub and work items in Azure DevOps (Azure Boards). We are using the "Azure Boards" GitHub app, and thus when we add AB# to a PR comment, it links to the right work item in Azure DevOps?
We would like to create a list of…

Patrick Szalapski
- 8,738
- 11
- 67
- 129
0
votes
2 answers
How to list approvers of pull request from AWS CodeCommit
From AWS CodeCommit, we can view the list of pull requests. However, it seems that we cannot display an "approver" column in the table.
https://docs.aws.amazon.com/codecommit/latest/userguide/how-to-view-pull-request.html
How could I generate a…

Toshi
- 145
- 1
- 9
0
votes
1 answer
Azure Devops pull-request conflict on complete
Probably this is for a lot of users, a simple question, but I can't figure it out right now.
Situation, in Azure Devops Git repositories we have multiple branches:
master (main development)
Acceptation (Acceptation branche)
Production (Production…

Michiel van Vaardegem
- 2,260
- 20
- 35
0
votes
1 answer
How to hide a merged pull request from VS code?
I am new on using Pull Request and wandering why there are some 'Merged' pull requests stay open in the list of Git extension of VS code.
For example as screenshot below, there are two requests, one is mine and the another was assigned to me, that…

Anne Wu
- 48
- 11