Other sequential data sets use this efficient consistency check, for example the Kafka log files do this.
In contrast, cryptocurrencies for example Bitcoin, use block chains whose hash codes are crypographically (slowly) calculated so that it is practically impossible to corrupt the data to arrive at a given hash code.
Git and Kafka use very efficient hash codes that do not have this anti-hacker feature. They only detect ordinary corruption from example missing, duplicated or garbled data as opposed to malicious data falsification.
"Blockchain" in common speech has the meaning of cryptographic block chain and that is why Git is not ordinarily considered to be a "Blockchain" despite it having data blocks whose verification is performed by chained (efficient non-cryptographic) hash functions.
The reason that Git is not a Blockchain has nothing to do with its choice of hash function. Rather a Blockchain has a procedure through which nodes decide what successor is acceptable, Git doesn't care it allows all successors.
Kafka has a procedure for consensus which determines who can declare what the successor is.
That's a rather clumsy way of saying that blockchains have Proof of Work. In combination with the Longest Chain Rule (which actually means heaviest rather than longest) this make the cost of changing history extremely high.