Bullfinch
Bullfinch

Reputation: 255

Check out working copy to existing files

I don't have a working copy. Just imported the files from the server and did some changes. Is it possible to check out a working copy to existing local files and be able to commit the changes I made?

Upvotes: 0

Views: 87

Answers (2)

Ben
Ben

Reputation: 8905

Nope. But you can check out a working copy, then copy your changes over the top of it.

You'd just better hope the server had the latest version of the files, and you're not overwriting other people's changes.

You're using version control wrong. Start using a working copy.

Upvotes: 1

Lazy Badger
Lazy Badger

Reputation: 97375

imported the files from the server

WHAT?!

Is it possible to check out a working copy to existing local files

No. And any SVN documentation clearly states it: you can checkout into empty dir only. You have:

  • Checkout repository into any another location
  • Integrate your changes into WC
  • Commit changes

  • Forget about own brainless "workflow"

Upvotes: 1

Related Questions