hello,

I am trying to create an analytics tool on an xml file and would like
to be able to know the exact item in the xml tree that was added,
created or deleted.  For example,

<parent>
  <child>A</child>
  <child>B</child>
  <child>C</child>
</parent>

Make a change and remove child B so now the file looks like the below:

<parent>
  <child>A</child>
  <child>C</child>
</parent>

git diff will tell be that line 3 has been removed, but what i would
really like to know is that <parent> has been changed. What would be
perfect would be DOM access based on the change. Not sure if this is
possible or not.  Any ideas would be great. Thank you

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.

Reply via email to