mirror of
https://github.com/git-tips/tips
synced 2024-11-12 22:57:08 +00:00
pull-request command
This commit is contained in:
parent
518d8d1500
commit
3261e1fb66
2 changed files with 9 additions and 0 deletions
|
@ -153,6 +153,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
|
|||
* [Get the repo name.](#get-the-repo-name)
|
||||
* [logs between date range](#logs-between-date-range)
|
||||
* [Exclude author from logs](#exclude-author-from-logs)
|
||||
* [Generates a summary of pending changes](#generates-a-summary-of-pending-changes)
|
||||
|
||||
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
|
||||
<!-- @doxie.inject end toc -->
|
||||
|
@ -1045,5 +1046,10 @@ git log --perl-regexp --author='^((?!excluded-author-regex).*)
|
|||
|
||||
```
|
||||
|
||||
## Generates a summary of pending changes
|
||||
```sh
|
||||
git request-pull v1.0 https://git.ko.xz/project master:for-linus
|
||||
```
|
||||
|
||||
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
|
||||
<!-- @doxie.inject end -->
|
||||
|
|
|
@ -449,4 +449,7 @@
|
|||
}, {
|
||||
"title": "Exclude author from logs",
|
||||
"tip": "git log --perl-regexp --author='^((?!excluded-author-regex).*)$'"
|
||||
}, {
|
||||
"title": "Generates a summary of pending changes",
|
||||
"tip": "git request-pull v1.0 https://git.ko.xz/project master:for-linus"
|
||||
}]
|
Loading…
Reference in a new issue