“file not found” error while commiting
I have a working copy, checked out from SVN repository.
When i'm trying to commit, i get following error:
svn: File not found: revision 57, path '/trunk/path/to/my/file/logo-mini.jpg'
I've found this file in the repo and noticed, that it has only one revision - 58.
I don't understand, why SVN complains about this file, when it is presented and why it points to revision 57 instead of 58 ?
I've also renamed the grand-grand-grand-parent folder of this file. Possible, this is an issue ...
Update
Detailed error description, that i've got from Cornerstone app (Mac OS X):
Description : Could not find the specified file.
Suggestion : Check that the path you have specified is correct.
Technical Information
=====================
Error : V4FileNotFoundError
Exception : ZSVNNoSuchEntryException
Causal Information
==================
Description : Commit failed (details follow):
Status : 160013
File : subversion/libsvn_client/commit.c, 867
Description : File not found: revision 57, path '/trunk/assets/themes/base/article-content/images/logo-mini.jpg'
Status : 160013
File : subversion/libsvn_fs_fs/tree.c, 663
So, i've renamed "/trunk/assets/themes directory" to "/trunk/assets/skins", while improving project structure.
I've tried following:
- updating /trunk/assets/themes directory
- cleaning
- deleting from filesytem and checking out again
- reverting entire /trunk/assets/themes directory to the HEAD revision. Even this does't helps. Still getting the same error.
I've got no results.
svn commit
add a comment |
I have a working copy, checked out from SVN repository.
When i'm trying to commit, i get following error:
svn: File not found: revision 57, path '/trunk/path/to/my/file/logo-mini.jpg'
I've found this file in the repo and noticed, that it has only one revision - 58.
I don't understand, why SVN complains about this file, when it is presented and why it points to revision 57 instead of 58 ?
I've also renamed the grand-grand-grand-parent folder of this file. Possible, this is an issue ...
Update
Detailed error description, that i've got from Cornerstone app (Mac OS X):
Description : Could not find the specified file.
Suggestion : Check that the path you have specified is correct.
Technical Information
=====================
Error : V4FileNotFoundError
Exception : ZSVNNoSuchEntryException
Causal Information
==================
Description : Commit failed (details follow):
Status : 160013
File : subversion/libsvn_client/commit.c, 867
Description : File not found: revision 57, path '/trunk/assets/themes/base/article-content/images/logo-mini.jpg'
Status : 160013
File : subversion/libsvn_fs_fs/tree.c, 663
So, i've renamed "/trunk/assets/themes directory" to "/trunk/assets/skins", while improving project structure.
I've tried following:
- updating /trunk/assets/themes directory
- cleaning
- deleting from filesytem and checking out again
- reverting entire /trunk/assets/themes directory to the HEAD revision. Even this does't helps. Still getting the same error.
I've got no results.
svn commit
What does your log say?svn log path/to/your/logo-mini.jpg?
– Lekensteyn
Mar 6 '11 at 20:31
I cannot see a log for this file in my working copy, because it's grand-grand-grand-parent folder was renamed. AFAIK, it was sheduled for deletion and all files was deleted, leaving empty folders.
– AntonAL
Mar 6 '11 at 20:39
Figured out, what you mean. It says: r58 | AntonAL | 2011-01-23 16:00:56 +0300 (вс, 23 янв 2011) | 140 lines. Anyway, this is rev 58
– AntonAL
Mar 6 '11 at 20:56
see update in my question
– AntonAL
Mar 6 '11 at 21:06
When i'm doing svn log --verbose, i see, that this file was added in revision 58 (r58)
– AntonAL
Mar 6 '11 at 21:21
add a comment |
I have a working copy, checked out from SVN repository.
When i'm trying to commit, i get following error:
svn: File not found: revision 57, path '/trunk/path/to/my/file/logo-mini.jpg'
I've found this file in the repo and noticed, that it has only one revision - 58.
I don't understand, why SVN complains about this file, when it is presented and why it points to revision 57 instead of 58 ?
I've also renamed the grand-grand-grand-parent folder of this file. Possible, this is an issue ...
Update
Detailed error description, that i've got from Cornerstone app (Mac OS X):
Description : Could not find the specified file.
Suggestion : Check that the path you have specified is correct.
Technical Information
=====================
Error : V4FileNotFoundError
Exception : ZSVNNoSuchEntryException
Causal Information
==================
Description : Commit failed (details follow):
Status : 160013
File : subversion/libsvn_client/commit.c, 867
Description : File not found: revision 57, path '/trunk/assets/themes/base/article-content/images/logo-mini.jpg'
Status : 160013
File : subversion/libsvn_fs_fs/tree.c, 663
So, i've renamed "/trunk/assets/themes directory" to "/trunk/assets/skins", while improving project structure.
I've tried following:
- updating /trunk/assets/themes directory
- cleaning
- deleting from filesytem and checking out again
- reverting entire /trunk/assets/themes directory to the HEAD revision. Even this does't helps. Still getting the same error.
I've got no results.
svn commit
I have a working copy, checked out from SVN repository.
When i'm trying to commit, i get following error:
svn: File not found: revision 57, path '/trunk/path/to/my/file/logo-mini.jpg'
I've found this file in the repo and noticed, that it has only one revision - 58.
I don't understand, why SVN complains about this file, when it is presented and why it points to revision 57 instead of 58 ?
I've also renamed the grand-grand-grand-parent folder of this file. Possible, this is an issue ...
Update
Detailed error description, that i've got from Cornerstone app (Mac OS X):
Description : Could not find the specified file.
Suggestion : Check that the path you have specified is correct.
Technical Information
=====================
Error : V4FileNotFoundError
Exception : ZSVNNoSuchEntryException
Causal Information
==================
Description : Commit failed (details follow):
Status : 160013
File : subversion/libsvn_client/commit.c, 867
Description : File not found: revision 57, path '/trunk/assets/themes/base/article-content/images/logo-mini.jpg'
Status : 160013
File : subversion/libsvn_fs_fs/tree.c, 663
So, i've renamed "/trunk/assets/themes directory" to "/trunk/assets/skins", while improving project structure.
I've tried following:
- updating /trunk/assets/themes directory
- cleaning
- deleting from filesytem and checking out again
- reverting entire /trunk/assets/themes directory to the HEAD revision. Even this does't helps. Still getting the same error.
I've got no results.
svn commit
svn commit
edited Jun 28 '12 at 4:56
Sathyajith Bhat♦
52.6k29154252
52.6k29154252
asked Mar 6 '11 at 20:26
AntonAL
3582723
3582723
What does your log say?svn log path/to/your/logo-mini.jpg?
– Lekensteyn
Mar 6 '11 at 20:31
I cannot see a log for this file in my working copy, because it's grand-grand-grand-parent folder was renamed. AFAIK, it was sheduled for deletion and all files was deleted, leaving empty folders.
– AntonAL
Mar 6 '11 at 20:39
Figured out, what you mean. It says: r58 | AntonAL | 2011-01-23 16:00:56 +0300 (вс, 23 янв 2011) | 140 lines. Anyway, this is rev 58
– AntonAL
Mar 6 '11 at 20:56
see update in my question
– AntonAL
Mar 6 '11 at 21:06
When i'm doing svn log --verbose, i see, that this file was added in revision 58 (r58)
– AntonAL
Mar 6 '11 at 21:21
add a comment |
What does your log say?svn log path/to/your/logo-mini.jpg?
– Lekensteyn
Mar 6 '11 at 20:31
I cannot see a log for this file in my working copy, because it's grand-grand-grand-parent folder was renamed. AFAIK, it was sheduled for deletion and all files was deleted, leaving empty folders.
– AntonAL
Mar 6 '11 at 20:39
Figured out, what you mean. It says: r58 | AntonAL | 2011-01-23 16:00:56 +0300 (вс, 23 янв 2011) | 140 lines. Anyway, this is rev 58
– AntonAL
Mar 6 '11 at 20:56
see update in my question
– AntonAL
Mar 6 '11 at 21:06
When i'm doing svn log --verbose, i see, that this file was added in revision 58 (r58)
– AntonAL
Mar 6 '11 at 21:21
What does your log say?
svn log path/to/your/logo-mini.jpg?– Lekensteyn
Mar 6 '11 at 20:31
What does your log say?
svn log path/to/your/logo-mini.jpg?– Lekensteyn
Mar 6 '11 at 20:31
I cannot see a log for this file in my working copy, because it's grand-grand-grand-parent folder was renamed. AFAIK, it was sheduled for deletion and all files was deleted, leaving empty folders.
– AntonAL
Mar 6 '11 at 20:39
I cannot see a log for this file in my working copy, because it's grand-grand-grand-parent folder was renamed. AFAIK, it was sheduled for deletion and all files was deleted, leaving empty folders.
– AntonAL
Mar 6 '11 at 20:39
Figured out, what you mean. It says: r58 | AntonAL | 2011-01-23 16:00:56 +0300 (вс, 23 янв 2011) | 140 lines. Anyway, this is rev 58
– AntonAL
Mar 6 '11 at 20:56
Figured out, what you mean. It says: r58 | AntonAL | 2011-01-23 16:00:56 +0300 (вс, 23 янв 2011) | 140 lines. Anyway, this is rev 58
– AntonAL
Mar 6 '11 at 20:56
see update in my question
– AntonAL
Mar 6 '11 at 21:06
see update in my question
– AntonAL
Mar 6 '11 at 21:06
When i'm doing svn log --verbose, i see, that this file was added in revision 58 (r58)
– AntonAL
Mar 6 '11 at 21:21
When i'm doing svn log --verbose, i see, that this file was added in revision 58 (r58)
– AntonAL
Mar 6 '11 at 21:21
add a comment |
1 Answer
1
active
oldest
votes
Cornerstone requires that you manually set working copy version in Cornerstone that matches version of Subversion on server. You can change it by selecting Working Copy -> Upgrade Working Copy...
I've just figure out the dates in this post, but I'm gonna commit the answer anyway just in case someone is still searching for an answer
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f254028%2ffile-not-found-error-while-commiting%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Cornerstone requires that you manually set working copy version in Cornerstone that matches version of Subversion on server. You can change it by selecting Working Copy -> Upgrade Working Copy...
I've just figure out the dates in this post, but I'm gonna commit the answer anyway just in case someone is still searching for an answer
add a comment |
Cornerstone requires that you manually set working copy version in Cornerstone that matches version of Subversion on server. You can change it by selecting Working Copy -> Upgrade Working Copy...
I've just figure out the dates in this post, but I'm gonna commit the answer anyway just in case someone is still searching for an answer
add a comment |
Cornerstone requires that you manually set working copy version in Cornerstone that matches version of Subversion on server. You can change it by selecting Working Copy -> Upgrade Working Copy...
I've just figure out the dates in this post, but I'm gonna commit the answer anyway just in case someone is still searching for an answer
Cornerstone requires that you manually set working copy version in Cornerstone that matches version of Subversion on server. You can change it by selecting Working Copy -> Upgrade Working Copy...
I've just figure out the dates in this post, but I'm gonna commit the answer anyway just in case someone is still searching for an answer
answered Jul 2 '15 at 8:00
leta1983
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f254028%2ffile-not-found-error-while-commiting%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What does your log say?
svn log path/to/your/logo-mini.jpg?– Lekensteyn
Mar 6 '11 at 20:31
I cannot see a log for this file in my working copy, because it's grand-grand-grand-parent folder was renamed. AFAIK, it was sheduled for deletion and all files was deleted, leaving empty folders.
– AntonAL
Mar 6 '11 at 20:39
Figured out, what you mean. It says: r58 | AntonAL | 2011-01-23 16:00:56 +0300 (вс, 23 янв 2011) | 140 lines. Anyway, this is rev 58
– AntonAL
Mar 6 '11 at 20:56
see update in my question
– AntonAL
Mar 6 '11 at 21:06
When i'm doing svn log --verbose, i see, that this file was added in revision 58 (r58)
– AntonAL
Mar 6 '11 at 21:21