How can I make a Pull request using TortoiseGit

In TortoiseGit

When I click Right Click → Push, OK, give it User / Pass, after which the Create Pull request button will appear giving it Start, URL, End. I click, but nothing happens.

Pull (0) requests are displayed in my repo.

And one more thing: how can I make an extraction request and then update it as needed using the same software (TortoiseGit)

+7
git repository tortoisegit
source share
1 answer

The document mentions :

After pushing your changes to the (public) repository, you simply provide other people with the URL of your repository and the branch name or version identifier.
For example:

git://example.com/repo.git BRANCHNAME 

http://tortoisegit.org/docs/tortoisegit/images/RequestPull.png

  • To start . This should be the revision on which your changes are based.
  • URL : The public URL of your repository that can be accessed by someone who can handle your changes.
  • The end . This should be the branch name or revision ID at the end of your commits.

Once the PR is created in this public repo, you can update it (at least for GitHub) by clicking on the same branch.

I would recommend not using master, but a dedicated branch for this PR (here, in the picture: ' issue-993 ', which started with the origin/master version).

See the Coupe Tooltip for Pull Queries .

+9
source share

All Articles