You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Qiu Jie Li <li...@gmail.com> on 2008/12/22 03:46:34 UTC

how to commit a missing status file in windows environment in command line urgently?

Hi all,

   I have been struggling to figure out how to commit a missing file in
command line in windows xp, does anyone know how to do it? I have been
google for days, but no answers.  It is really easy to commit a missing file
using TortoiseSVN Interface, but I just want to do it by script so I can
automate the process. Thanks a lot!

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=989384

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

Re: how to commit a missing status file in windows environment in command line urgently?

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Dec 21, 2008, at 21:46, Qiu Jie Li wrote:

>    I have been struggling to figure out how to commit a missing  
> file in command line in windows xp, does anyone know how to do it?  
> I have been google for days, but no answers.  It is really easy to  
> commit a missing file using TortoiseSVN Interface, but I just want  
> to do it by script so I can automate the process. Thanks a lot!

What do you mean, "missing status file"? Do you mean a file whose  
status when shown by "svn status" is "!" (i.e. "missing")? If so,  
then that means the file should be in the working copy, but is not,  
for reasons which Subversion does not know. Perhaps you or another  
program you used deleted it. If you meant to remove it from the  
repository, then type "svn rm thefilename" to tell Subversion that  
and schedule it for deletion, and then later you can "svn commit" it.  
If you didn't mean to delete it and want it back, type "svn revert  
thefilename".

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=990098

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].