You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but the bufname is fugitive:///home/foo/bar/.git//ce47d32b03bb7df0100b2625ef68fad1eb4646e3
what is this 'tree' meaning here?
was it incorrect, or whatever should add correct hash string: commit ce47d32b03bb7df0100b2625ef68fad1eb4646e3
?
The text was updated successfully, but these errors were encountered:
See man gitglossary. The tree is a data structure representing the directory hierarchy. The commitcontains the tree, as well as a commit message. You don't need to care about the tree. The reason it's there is that the buffer is modeled after Git's internal structure (see git cat-file commit HEAD). In the next redesign I will get rid of it, but don't hold your breath.
yes, actually did not care that 'tree' meaning, but adding 'commit xxxxxxx' with real commit hash string is more wanted, that reflected that git buf content real commit, and helpful to search or something if it is or there is 'commit xxxxx' (vs 'tree yyyyyyy')
the 'tree' hash string is like above,
but the bufname is
fugitive:///home/foo/bar/.git//ce47d32b03bb7df0100b2625ef68fad1eb4646e3
what is this 'tree' meaning here?
was it incorrect, or whatever should add correct hash string:
commit ce47d32b03bb7df0100b2625ef68fad1eb4646e3
?
The text was updated successfully, but these errors were encountered: