I have used git for a while to push and pull commits and branches, but I'm new to pull requests. I need to create a pull request from our development branch. This pull request needs to contain all commits from a certain point in time up until now. This pull request is for code reviewing purposes. I don't know how to go about this. Any suggestions? Thanks in advance.
For anyone wondering how I did this. I created a branch that holds all commits up to the certain point in time (commit id), using:
git branch review1 0b0shcommitid
Then I pushed this branch. Then I was able to create a pull request from the development branch into the new review1 branch, that holds all commits from the given commit until now.