Questions and Answers

0 Like 0 Dislike

Abhirit Kanti

How to update my repository so that it has the lastest version of my working copy?

Hello,

I have worked on modifying a tool and checked out code from the repository to make modifications. My code is now ready and I want to update my repository with all the new files and folders that I have created in my working copy.

In other words, I want the repository to match my working copy exactly. How can I do this?

Will I have to individually add each file to the repository?

Thank You!

Report abuse

The table below shows the current "market value" of the question and estimated amount of points that you can earn, when the question is closed.

Points Breakdown points Details
* Activity points are calculated based on summing up the weighted number of answers, recommendations and answer votes. Read further details.
Activity* 35
Bonus 20
Total market value 55 total
Asker will earn 12 1/3 of activity points
Asker will pay 20 Reward for best answer assigned by asker
Best answer may earn 32 — 43 Up to 2/3 of activity points plus the bonus

1 Responses

  1. 0 Like 0 Dislike

    Anonymous

    The command svn status will show you which files are not under svn control.  You can use the command svn add to place such files under svn control.  The add command will work on files or recursively on directories.   Be careful to not add superfluous files.  Once all new files have been added you can do a svn commit which also operates recursively.

    Reply Report abuse

    Please login to answer the question.