Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Download raw file #106

Closed
mickaelistria opened this issue Jun 30, 2017 · 8 comments
Closed

Download raw file #106

mickaelistria opened this issue Jun 30, 2017 · 8 comments

Comments

@mickaelistria
Copy link

It seems like it's not possible to get a raw file from a repo with gitiles with a regular HTTP URL. This is a serious missing feature that currently makes us still need to use cGit.

@akabrainstorm
Copy link

@mickaelistria Below of the page there is an TXT option for downloading raw file. But downloaded file is base64 encoded. You will need to manually decode it :)

@mickaelistria
Copy link
Author

You will need to manually decode it :)

That's not a very satisfying answer. Most other Git browsers allow to easily retrieve the content of the file without effort. Gitiles makes it hard.

@jrtapsell
Copy link

jrtapsell commented Jan 8, 2018

If you are in a browser context then this issue may be relevant:
#119

@jrn
Copy link
Contributor

jrn commented Jan 8, 2018

Duplicate of #7

@jrn jrn marked this as a duplicate of #7 Jan 8, 2018
@jrn jrn added the duplicate label Jan 8, 2018
@jrn jrn closed this as completed Jan 8, 2018
@raymov
Copy link

raymov commented Feb 9, 2019

Meanwhile this simple one liner can be used to download & decode a file within a Linux shell, e.g.:

# curl "https://android.googlesource.com/device/lge/bullhead/+/master/mixer_paths.xml?format=TEXT"| base64 --decode > mixer_paths.xml

@duduindo
Copy link

@raymov , Thank you

@cuadue
Copy link

cuadue commented Oct 24, 2019

The curl script does not work with the standard Google setup which uses GSuite for authentication, unless curl somehow signs in using your GSuite Account. Here's your oneliner for vi to open the file downloaded from Gitiles:

:r!base64 -d /file/downloaded/from/gitiles

Must be an overgeneralization to make sure all files, including binaries, can be transmitted across any communication channel, e.g. websockets, while overlooking (what seems to me) the most common use case.

@kmturley
Copy link

In Node you can use Buffer to decode and display the raw text file:

const requestPromise = require('request-promise');
requestPromise.get({
  uri: 'https://example.com/path/file.css?format=TEXT',
  headers: {
    'Authorization': 'Bearer ' + token
  },
  json: false
}).then((resp) => {
  console.log('resp', Buffer.from(resp, 'base64').toString('ascii'));
});

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

8 participants