mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
948bcac65d
* git subtree: make language inclusive * git revert: make language inclusive * git rev-list: make language inclusive * git request-pull: make language inclusive * git rebase: make language inclusive * git revert/es: make language inclusive * git rev-list/es: make language inclusive * git rebase/es: make language inclusive * git-rebase/es: improve language Co-authored-by: Marco Bonelli <marco@mebeim.net> * git-rebase/es: improve language Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Update git-rebase.md * git-subtree: revise example description * git-rebase/es: translate branch_name Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Update git-rebase.md * Update git-rev-list.md * Update pages.es/common/git-revert.md Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Apply suggestions from code review Co-authored-by: Waldir Pimenta <waldyrious@gmail.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: Axel Navarro <navarroaxel@gmail.com> Co-authored-by: Waldir Pimenta <waldyrious@gmail.com>
527 B
527 B
git request-pull
Generate a request asking the upstream project to pull changes into its tree. More information: https://git-scm.com/docs/git-request-pull.
- Produce a request summarizing the changes between the v1.1 release and a specified branch:
git request-pull {{v1.1}} {{https://example.com/project}} {{branch_name}}
- Produce a request summarizing the changes between the v0.1 release on the
foo
branch and the localbar
branch:
git request-pull {{v0.1}} {{https://example.com/project}} {{foo:bar}}