Reputation: 7062
I am using Linux Mint 18.1. I checked out a Laravel remote repository using svn checkout
command from terminal. I worked on that repository and now I would like to push files to that remote repository. How can I do that?
Upvotes: 2
Views: 88
Reputation: 41
This operation is called commit changes. You should run svn commit
to send or publish your changes to the remote repository.
Upvotes: 2