user2426316
user2426316

Reputation: 7331

How do I upload edited files in my SVN repository?

I am working with a SVN repository. I already have a local copy (i did a checkout). Now I edited some files in that repository and saved them. How do I transfer them to the server. Is it like GIT where I first have to add them to a staging area and then commit them?

Can someone tell me the necessary commands?

Upvotes: 0

Views: 61

Answers (1)

Mzf
Mzf

Reputation: 5260

Try :

svn commit -m "your log messages"

Upvotes: 1

Related Questions