Problem cloning Tizen repository (chromium-efl)

Original Created Nov 14, 2018 | Regeneration Apr 22, 2026

I'm attempting to clone the chromium-efl repository using the command:

git clone https://review.tizen.org/gerrit/p/platform/framework/web/chromium-efl

The cloning process starts and downloads approximately 1GB of data, but then fails with the following error:

error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

I need help resolving this cloning issue.

Problem Understanding

The error occurs during a large repository clone operation, typically due to:

  1. Network instability or interruptions
  2. Git client limitations
  3. Server-side connection issues
  4. Insufficient system resources

Solution Methods

  1. Increase Git buffer size: Try increasing the git buffer size before cloning:

    git config --global http.postBuffer 524288000
    git config --global core.compression 0
    
  2. Use shallow clone: Clone only recent history to reduce data transfer:

    git clone --depth 1 https://review.tizen.org/gerrit/p/platform/framework/web/chromium-efl
    
  3. Alternative repository: Try cloning from the GitHub mirror instead:

    git clone https://github.com/crosswalk-project/chromium-efl
    
  4. Network troubleshooting:

    • Ensure stable internet connection
    • Try using a wired connection instead of WiFi
    • Clone during off-peak hours

Additional Tips

  • The chromium-efl repository is particularly large (over 1GB)
  • Consider using git fetch --unshallow after a shallow clone if you need full history later
  • For Tizen development, you might want to use the official Tizen SDK instead of building from source

Customize your cookie preferences

You can enable or disable non-essential cookies. Essential cookies are always on to ensure the site works properly and to keep you signed in.

Necessary

These cookies are necessary for the website to function properly and cannot be switched off. They help with things like logging in and setting your privacy preferences.

Always on

Analytics

These cookies help us improve the site by tracking which pages are most popular and how visitors move around the site.

Enable analytics cookies
Public Forum Public Forum
Employees only. Please sign in with your company account.