@@ -963,7 +963,9 @@ def blame_incremental(self, rev: str | HEAD | None, file: str, **kwargs: Any) ->
963963 Unlike :meth:`blame`, this does not return the actual file's contents, only a
964964 stream of :class:`BlameEntry` tuples.
965965
966- :param rev: Revision specifier, see git-rev-parse for viable options.
966+ :param rev: Revision specifier. If `None`, the blame will include all the latest
967+ uncommitted changes. Otherwise, anything succesfully parsed by git-rev-parse
968+ is a valid option.
967969
968970 :return: Lazy iterator of :class:`BlameEntry` tuples, where the commit indicates
969971 the commit to blame for the line, and range indicates a span of line numbers
@@ -1053,7 +1055,9 @@ def blame(
10531055 )-> List [List [Commit | List [str | bytes ]| None ]]| Iterator [BlameEntry ]| None :
10541056"""The blame information for the given file at the given revision.
10551057
1056- :param rev: Revision specifier, see git-rev-parse for viable options.
1058+ :param rev: Revision specifier. If `None`, the blame will include all the latest
1059+ uncommitted changes. Otherwise, anything succesfully parsed by git-rev-parse
1060+ is a valid option.
10571061
10581062 :return:
10591063 list: [git.Commit, list: [<line>]]