Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to commit changes to SVN External?

I have a SVN external setup in my code which pulls all the code for a directory from another repository. When I make a change to that code and try to commit the change, it doesn't show any changes to commit in tortoiseSVN. How do I commit changes made in a externals directory back to the repository the code came from?

like image 794
Tyler Schroeder Avatar asked Dec 28 '09 09:12

Tyler Schroeder


1 Answers

You need to commit from within the external directory.

CLI equivalent:

svn commit dirname
like image 56
Evert Avatar answered Sep 28 '22 07:09

Evert