Keeto
Keeto

Reputation: 4208

svn and rails migration files

I am working on a rails project using svn. I generated a migration file and modified a couple of existing files. When I commit my changes, svn only commits the updates on the existing files, and the schema.rb but my newly migration file is not commited. Does anyone know why? I am new to svn and I commit using the svn commmit -m "message"

Upvotes: 1

Views: 47

Answers (1)

Chris Heald
Chris Heald

Reputation: 62688

You need to use svn add first to add the new file(s) to the repository.

Upvotes: 1

Related Questions