문제

I have referred the link https://help.ubuntu.com/10.04/serverguide/subversion.html to set up a n SVN repo for a project that I am developing right now. I am using Ubuntu 10.04.

I did as mentioned in the link provided and when I finally executed the below given command in the terminal

svn import /path/to/import/directory file:///path/to/repos/project

I got a screen whose picture has been attached with this. please have a look in to that and tell me what to do next. Thanks :)-

enter image description here

도움이 되었습니까?

해결책

You've been put into the editor to write your commit message.

The commit message describes what your commit does. For a commit like this I'd probably do something like "initial import"

You can provide the commit on the command line with -m "initial import" or by putting your message in a file and reference the file e.g. -F svn.commit.tmp

This is covered in this section of the svnbook: http://svnbook.red-bean.com/en/1.7/svn.tour.cycle.html#svn.tour.cycle.commit

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top