git.webkit.org/WebKit.git out of sync from svn repository?

View: New views
6 Messages — Rating Filter:   Alert me  

git.webkit.org/WebKit.git out of sync from svn repository?

by Fumitoshi Ukai (鵜飼文敏) :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I think svn has r50586 (accodring to trac.webkit.org), but git only pulls r50565now.
Even I clone git repository from git://git.webkit.org/WebKit.git again, it only has r50565.
Is it out of sync?

% TZ=UTC date
Fri Nov  6 04:29:15 UTC 2009
% git remote show origin 
* remote origin
  Fetch URL: git://git.webkit.org/WebKit.git
  Push  URL: git://git.webkit.org/WebKit.git
  HEAD branch: master
  Remote branches:
    Safari-3-1-branch tracked
    Safari-3-2-branch tracked
    Safari-3-branch   tracked
    master            tracked
    safari-4-branch   tracked
  Local branch configured for 'git pull':
    master merges with remote master
  Local ref configured for 'git push':
    master pushes to master (up to date)
% git pull
Already up-to-date.
% git log -1 HEAD  
commit 968141f94cc10ea755eebcdf08882a4253a2cd2d
Author: aroben@... <aroben@...@268f45cc-cd09-0410-ab3c-d52691b4dbfc>

Date:   Thu Nov 5 16:42:45 2009 +0000

    Remove bogus else clause in bugzilla-tool
    
    Fixes <http://webkit.org/b/31125> REGRESSION (r47121): bugzilla-tool
    create-bug raises exception after entering bug description
    
    Reviewed by David Kilzer.
    
    * Scripts/bugzilla-tool:
    (CreateBug): else clauses are only hit if no exception is raised, so
    it makes no sense to try to re-raise the exception in an else clause.
    The exception will automatically be re-raised if it doesn't match any
    of the except clauses, so we don't have to do anything special here at
    all to get the desired behavior.
    
9-0410-ab3c-d52691b4dbfc


_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: git.webkit.org/WebKit.git out of sync from svn repository?

by William Siegrist :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Nov 5, 2009, at 8:32 PM, Fumitoshi Ukai (鵜飼文敏) wrote:

> I think svn has r50586 (accodring to trac.webkit.org), but git only pulls r50565now.
> Even I clone git repository from git://git.webkit.org/WebKit.git again, it only has r50565.
> Is it out of sync?


We had syncing issues yesterday, but they look fixed now. Can you retry?

-Bill


_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: git.webkit.org/WebKit.git out of sync from svn repository?

by Mark Rowe-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


On 2009-11-05, at 20:32, Fumitoshi Ukai (鵜飼文敏) wrote:

I think svn has r50586 (accodring to trac.webkit.org), but git only pulls r50565now.
Even I clone git repository from git://git.webkit.org/WebKit.git again, it only has r50565.
Is it out of sync?

It seems fine to me.

mrowe@angara:~$ git clone git://git.webkit.org/WebKit.git WebKit
Initialized empty Git repository in /Volumes/Data/Users/mrowe/WebKit/.git/
remote: Counting objects: 593853, done.
remote: Compressing objects: 100% (101931/101931), done.
remote: Total 593853 (delta 468182), reused 593646 (delta 468045)
Receiving objects: 100% (593853/593853), 655.06 MiB | 33.53 MiB/s, done.
Resolving deltas: 100% (468182/468182), done.
Checking out files: 100% (55327/55327), done.
mrowe@angara:~$ cd WebKit/
mrowe@angara:~/WebKit$ git log -n1 master
commit 588e7c8cc95b6f070fa6e0a860b86f783a0ecaef
Author: eric@... <eric@...@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 6 20:01:14 2009 +0000

    2009-11-06  Steve Block  <steveblock@...>
    
            Reviewed by Eric Seidel.
    
            V8DOMWindowCustom.cpp is missing WEB_SOCKETS guard on include.
    
            Build fix only. No new tests possible.
    
            * bindings/v8/custom/V8DOMWindowCustom.cpp: Modified. Added WEB_SOCKETS guard on inclue of WebSockets.h.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50603 268f45cc-cd09-0410-ab3c-d52691b4dbfc
mrowe@angara:~/WebKit$ 


% git pull
Already up-to-date.
% git log -1 HEAD  
commit 968141f94cc10ea755eebcdf08882a4253a2cd2d
Author: aroben@... <aroben@...@268f45cc-cd09-0410-ab3c-d52691b4dbfc>

Date:   Thu Nov 5 16:42:45 2009 +0000
    
9-0410-ab3c-d52691b4dbfc

Your looking at the most recent revision on your current branch, but there's nothing in this output that shows what branch you currently have checked out.  Does "git fetch origin && git log -n1 origin/master" display a different revision?

- Mark



_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

smime.p7s (4K) Download Attachment

Re: git.webkit.org/WebKit.git out of sync from svn repository?

by Fumitoshi Ukai (鵜飼文敏) :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Sat, Nov 7, 2009 at 6:10 AM, William Siegrist <wsiegrist@...> wrote:
On Nov 5, 2009, at 8:32 PM, Fumitoshi Ukai (鵜飼文敏) wrote:

> I think svn has r50586 (accodring to trac.webkit.org), but git only pulls r50565now.
> Even I clone git repository from git://git.webkit.org/WebKit.git again, it only has r50565.
> Is it out of sync?


We had syncing issues yesterday, but they look fixed now. Can you retry?

It seems working now.
Thanks!
ukai
 

-Bill




_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: git.webkit.org/WebKit.git out of sync from svn repository?

by Yaar Schnitman-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi all,

I think we have this problem again. Webkit svn is on r50761, but I can only git pull up to r50738.

-Yaar

On Sun, Nov 8, 2009 at 5:11 PM, Fumitoshi Ukai (鵜飼文敏) <ukai@...> wrote:
On Sat, Nov 7, 2009 at 6:10 AM, William Siegrist <wsiegrist@...> wrote:
On Nov 5, 2009, at 8:32 PM, Fumitoshi Ukai (鵜飼文敏) wrote:

> I think svn has r50586 (accodring to trac.webkit.org), but git only pulls r50565now.
> Even I clone git repository from git://git.webkit.org/WebKit.git again, it only has r50565.
> Is it out of sync?


We had syncing issues yesterday, but they look fixed now. Can you retry?

It seems working now.
Thanks!
ukai
 

-Bill




_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: git.webkit.org/WebKit.git out of sync from svn repository?

by Mark Rowe-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


On 2009-11-10, at 13:58, Yaar Schnitman wrote:

Hi all,

I think we have this problem again. Webkit svn is on r50761, but I can only git pull up to r50738.

This is fixed.

- Mark

On Sun, Nov 8, 2009 at 5:11 PM, Fumitoshi Ukai (鵜飼文敏) <ukai@...> wrote:
On Sat, Nov 7, 2009 at 6:10 AM, William Siegrist <wsiegrist@...> wrote:
On Nov 5, 2009, at 8:32 PM, Fumitoshi Ukai (鵜飼文敏) wrote:

> I think svn has r50586 (accodring to trac.webkit.org), but git only pulls r50565now.
> Even I clone git repository from git://git.webkit.org/WebKit.git again, it only has r50565.
> Is it out of sync?


We had syncing issues yesterday, but they look fixed now. Can you retry?

It seems working now.
Thanks!
ukai
 

-Bill




_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



_______________________________________________
webkit-dev mailing list
webkit-dev@...
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

smime.p7s (4K) Download Attachment