-
Notifications
You must be signed in to change notification settings - Fork 156
[GSOC][RFC] cat-file: reuse ref-filter logic #980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
31dd24e
ecc13a8
e5f803e
903741f
1eb72ef
8f9eaaf
ef23c95
2ed21cc
274d4c3
c5ed6cf
fcae595
4713029
423767e
c60e72e
6be0a72
3f886be
fd12fe8
d703156
a091df8
1729a5f
55f8b27
f02e7c3
d3a986d
4ae142a
1bb0754
1a668d8
8f6239d
8c2ebaf
13e9468
60bf953
c3b60b9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -226,6 +226,12 @@ newline. The available atoms are: | |
after that first run of whitespace (i.e., the "rest" of the | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Hariom verma wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, ZheNing Hu wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Hariom verma wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, ZheNing Hu wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Hariom verma wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, ZheNing Hu wrote (reply to this):
|
||
line) are output in place of the `%(rest)` atom. | ||
|
||
Note that most of the atoms in `for-each-ref --format` are now supported, | ||
such as `%(tree)`, `%(parent)`, `%(author)`, `%(tagger)`, `%(if)`, | ||
`%(then)`, `%(else)`, `%(end)`. But these atoms will be rejected: | ||
`%(refname)`, `%(symref)`, `%(upstream)`, `%(push)`, `%(worktreepath)`, | ||
`%(flag)`, `%(HEAD)`. See linkgit:git-for-each-ref[1]. | ||
|
||
If no format is specified, the default format is `%(objectname) | ||
%(objecttype) %(objectsize)`. | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -235,6 +235,15 @@ and `date` to extract the named component. For email fields (`authoremail`, | |
without angle brackets, and `:localpart` to get the part before the `@` symbol | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Ævar Arnfjörð Bjarmason wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Junio C Hamano wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, ZheNing Hu wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Ævar Arnfjörð Bjarmason wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, ZheNing Hu wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Ævar Arnfjörð Bjarmason wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Christian Couder wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Bagas Sanjaya wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, ZheNing Hu wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Bagas Sanjaya wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, ZheNing Hu wrote (reply to this):
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On the Git mailing list, Bagas Sanjaya wrote (reply to this):
|
||
out of the trimmed email. | ||
|
||
The raw data in an object is `raw`. | ||
|
||
raw:size:: | ||
The raw data size of the object. | ||
|
||
Note that `--format=%(raw)` can not be used with `--python`, `--shell`, `--tcl`, | ||
because such language may not support arbitrary binary data in their | ||
string variable type. | ||
|
||
The message in a commit or a tag object is `contents`, from which | ||
`contents:<part>` can be used to extract various parts out of: | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the Git mailing list, Christian Couder wrote (reply to this):
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the Git mailing list, ZheNing Hu wrote (reply to this):