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:
- svnadmin create c:/reps/milliondollarapp
- 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:
- create new repo
- import existing project (ex, c:/code)
- checkout place (ex., c:/code2)
- work code checkouted (c:/code2) (what do code in c:/code ????)
but in situation need:
- create new repo
- import existing project (c:/code)
- ?????
- 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
Post a Comment