Stephen Leake <[EMAIL PROTECTED]> writes: > So either dvc needs to keep the git index and the ewoc marked files in > sync, or it needs to run "git add" for each marked file at commit time. > > [...] > > For the latter approach, xgit-dvc-log-edit-done needs to run "git add" > for all marked files, then run "git commit".
One precision: in git, you have at least two ways to do a partial commit. $ git add foo $ git add bar $ git commit -m "commited foo and bar" or $ git commit -a -m "commited foo and bar" -- foo bar And both can make sense. The first should be achieved with xgit-add, the second with marking IMHO. -- Matthieu _______________________________________________ Dvc-dev mailing list [email protected] https://mail.gna.org/listinfo/dvc-dev
