Say I have a git server. User X wants to add files A, B, C, D, E, and then commit, while user Y wants to add F, G, H, I, J, and then commit.
If they happen to operate in the same time, would it be possible that git add F, G, H, I, J
be run during the git add A, B, C, D, E
and commit -m 'user X commit'
process so that the files added by Y be mixed into user X's commit (especially when files A ~ E are large and take much time to add and commit)?
If it's possible, is there a solution for this?