Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Git's commit atomic?

An update hook can reject parts of a commit and allow others.

update() in receive_pack.c runs in a loop which then calls the update hook possibly multiple times during a commit. Each time the update hook is called, it can return failure, seemingly allowing some refs to be updated and some not updated if rejected.

Does Git's feature of an update hook allowing possibly part of a commit to succeed and some fail mean that Git's commit is not atomic?

Or what am I missing here? Thanks.

like image 581
James Creasy Avatar asked Apr 03 '13 21:04

James Creasy


1 Answers

Yes commits are atomic. It is not possible to reject part of a commit.

The update hook may be called multiple times during a single push (not commit) if multiple branches are being pushed at the same time. This allows accepting updates to some branches while rejecting updates to others, but each accepted update will still point to a complete commit from the pushing repository.

like image 153
qqx Avatar answered Oct 07 '22 12:10

qqx