I have checked out a a directory named with src
.
I modified some files in the directory and I need to commit the changes which I have made.
But I do not want to update for example app.js
in src\app
folder.
How can I accomplish this?
Asked
Active
Viewed 57 times
0

krave
- 1,629
- 4
- 17
- 36
-
It depends. Do you want to prevent everyone from committing it? Just yourself? Or maybe just omit from current commit and possibly commit it some time later? – Álvaro González Mar 27 '17 at 08:21
-
Just for myself and maybe commit it much later. – krave Mar 27 '17 at 09:17
-
In such case you may want to `svn add` it and then `svn changelist` it. – Álvaro González Mar 27 '17 at 09:29