SVN: workflow of importing existing project to a new rep -


i can't wrap ahead around 1 step have after import existing project (already working code, etc.) new repository.

everything goes this:

  1. svnadmin create c:/reps/milliondollarapp
  2. svn import c:/mycode/milliondollarapp file:///c:/reps/milliondollarapp -m "initial import"

now, code c:/mycode/milliondollarapp sits in repository, however, svn still not tracks code inside c:/mycode/milliondollarapp.

how do that? how start tracking project's code imported?

do delete c:/mycode/milliondollarapp , checkout repository? checkout without deleting code? these 2 solutions feels wrong.

most tutorials/examples goes this:

  1. create new repo
  2. import existing project (ex, c:/code)
  3. checkout place (ex., c:/code2)
  4. work code checkouted (c:/code2) (what do code in c:/code ????)

but in situation need:

  1. create new repo
  2. import existing project (c:/code)
  3. ?????
  4. work , use version control features same code (c:/code)

svn import doesn't make working copy. need svn checkout. there reason cannot delete c:\code checkout new working copy there? if there is, things missing svn and/or not project.


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -