--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
I did manually copied one file to the skia directory when I met the ninja error, but didn't touch any other. It's my master branch, which I don't work in.git status# On branch masternothing to commit, working directory cleanAlso there are tons of other directories having the same .git message during 'gclient sync -force', and I am sure I never touched them:59>________ found .git directory; skipping src/third_party/libphonenumber/src/test60>________ found .git directory; skipping src/third_party/libsrtp/test61>________ found .git directory; skipping src/third_party/libvpx62>________ found .git directory; skipping src/third_party/libyuv63>________ found .git directory; skipping src/third_party/lss65>________ found .git directory; skipping src/third_party/openmax_dl66>________ found .git directory; skipping src/third_party/opensslIf these is .git related, any command I can use to reset everything back to untouched? Thanks,
On Tue, May 28, 2013 at 12:03 AM, Ke Wang <kewa...@gmail.com> wrote:
I did manually copied one file to the skia directory when I met the ninja error, but didn't touch any other. It's my master branch, which I don't work in.git status# On branch masternothing to commit, working directory cleanAlso there are tons of other directories having the same .git message during 'gclient sync -force', and I am sure I never touched them:59>________ found .git directory; skipping src/third_party/libphonenumber/src/test60>________ found .git directory; skipping src/third_party/libsrtp/test61>________ found .git directory; skipping src/third_party/libvpx62>________ found .git directory; skipping src/third_party/libyuv63>________ found .git directory; skipping src/third_party/lss65>________ found .git directory; skipping src/third_party/openmax_dl66>________ found .git directory; skipping src/third_party/opensslIf these is .git related, any command I can use to reset everything back to untouched? Thanks,The following two commands:rm -rf third_party/skia/gclient sync
On Tue, May 28, 2013 at 3:08 PM, James Robinson <jam...@chromium.org> wrote:
On Tue, May 28, 2013 at 12:03 AM, Ke Wang <kewa...@gmail.com> wrote:
I did manually copied one file to the skia directory when I met the ninja error, but didn't touch any other. It's my master branch, which I don't work in.git status# On branch masternothing to commit, working directory cleanAlso there are tons of other directories having the same .git message during 'gclient sync -force', and I am sure I never touched them:59>________ found .git directory; skipping src/third_party/libphonenumber/src/test60>________ found .git directory; skipping src/third_party/libsrtp/test61>________ found .git directory; skipping src/third_party/libvpx62>________ found .git directory; skipping src/third_party/libyuv63>________ found .git directory; skipping src/third_party/lss65>________ found .git directory; skipping src/third_party/openmax_dl66>________ found .git directory; skipping src/third_party/opensslIf these is .git related, any command I can use to reset everything back to untouched? Thanks,The following two commands:rm -rf third_party/skia/gclient syncThis worked! Now I can see the skia/ files are up to date.But another nightmare came. As I met similar compile error for file under gpu/command_buffer/, I tried the same 'rm -rf gpu/' trick. But 'gclient sync' cannot bring it back ! :(What's the problem here? The rm -rf trick only can be done to some certain directory?