gatsby-source-git icon indicating copy to clipboard operation
gatsby-source-git copied to clipboard

Source plugin for pulling data into Gatsby from Git repositories (hosted anywhere)

Results 18 gatsby-source-git issues
Sort by recently updated
recently updated
newest added

Override the modifiedTime by git commit history. 1. Add option "enableShallowClone" to enable/disable shallow clone 2. When enableShallowClone is false, clone without "--depth 1" so that we can retrieve real...

Hello @stevetweeddale, thanks for this useful gatsby plugin. I use it on my documentation site. Some great features are waiting in the Pull requests list like #12 #26. Can you...

I would like to have the ability to clone a repo from a predefined commit ``` { resolve: `gatsby-source-git`, options: { name: `repo-one`, remote: `https://bitbucket.org/stevetweeddale/markdown-test.git`, commit: `e05270aa0927691d797edcebbf1d7fa33fc91516`, } } ```

Bumps [simple-git](https://github.com/steveukx/git-js/tree/HEAD/simple-git) from 1.105.0 to 3.5.0. Release notes Sourced from simple-git's releases. [email protected] Minor Changes 2040de6: Resolves potential command injection vulnerability by preventing use of --upload-pack in git.clone [email protected] Minor...

dependencies

This change makes it possible to tell how the pattern option was configured for any `GitRemote` type. This is helpful for creating slugs for pages and knowing the `basePath` to...

There's a fair chance I'm taking the wrong approach here, so let me know if I'm doing something wrong somewhere... I have 2 GitHub repos, [one is for a Gatsby...

Is this package compatible with Gatsby V3? I searched around but couldn't find anything. I'm super new to gatsby, node, and all of this. Upon running: `npm install --save gatsby-source-git`...

It took me a while to figure this one out, so bear with the long description. I am currently using `gatsby-source-git` to source MD files from another Git repo. We'll...