Hi all,
>From the gitattributes documentation :
> Interaction between checkin/checkout attributes
>
In the check-in codepath, the worktree file is first converted with filter
> driver (if specified and corresponding driver defined), then the result is
> processed with ident (if specified), and then finally with text (again, if
> specified and applicable).
>
In the check-out codepath, the blob content is first converted with text,
> and then ident and fed to filter.
So we have :
check-in : INDEX ---> filter ---> ident ---> text ---> REPOSITORY
check-out : REPOSITORY ---> text ---> ident ---> filter ---> WORKSPACE
*Questions :*
*Are filter, ident, text identical*, in the meaning I can wire anything to
any of them ? So they have been name like this for easier workflow
understanding and set-up, but they could have been named anything as
filter1, filter2, filter3 ?
--
You received this message because you are subscribed to the Google Groups "Git
for human beings" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/git-users/-/LkV8elWmk9EJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/git-users?hl=en.