296
296
wt.commit('Create five empty files.')
297
297
open('FILE_B', 'w').write('Modification to file FILE_B.')
298
298
open('FILE_C', 'w').write('Modification to file FILE_C.')
300
300
open('FILE_Q', 'w').write('FILE_Q is added but not committed.')
301
301
wt.add('FILE_Q') # FILE_Q will be added but not committed
302
302
open('UNVERSIONED_BUT_EXISTING', 'w')