<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to connect to git lfs file on github? in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4701754#M61319</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am trying to get raw file from github using link like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://raw.githubusercontent.com/myCompany/cost-mgmt-repo/BranchName/CostManagement/Dim_ManagementGroups.csv&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;I am getting:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;version https://git-lfs.github.com/spec/v1
oid sha256:3b70bcd441cd74d876c58f9aef3e25c8822cb8bfe5904ed3b6dcaa344445
size 44476&lt;/PRE&gt;&lt;P&gt;I have code like here:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;        AddColumnWithTable = Table.AddColumn(ExpandedColumn, "ResultTable", each 
            let
                a = Csv.Document(
                    Web.Contents(paramBaseUrlRawGithub, [
                        RelativePath = [RelativePath],
                        Query = [token = [Token]]
                    ]),
                    [Delimiter = ",", QuoteStyle = QuoteStyle.Csv]
                ),
                b = Table.PromoteHeaders(a, [PromoteAllScalars=true])
            in
                b
            )   &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is paramBaseUrlRawGithub:&lt;BR /&gt;&lt;A href="https://raw.githubusercontent.com/" target="_self"&gt;https://raw.githubusercontent.com/&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;How to get it?&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Jacek&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 21 May 2025 14:23:54 GMT</pubDate>
    <dc:creator>jaryszek</dc:creator>
    <dc:date>2025-05-21T14:23:54Z</dc:date>
    <item>
      <title>How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4701754#M61319</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am trying to get raw file from github using link like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://raw.githubusercontent.com/myCompany/cost-mgmt-repo/BranchName/CostManagement/Dim_ManagementGroups.csv&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;I am getting:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;version https://git-lfs.github.com/spec/v1
oid sha256:3b70bcd441cd74d876c58f9aef3e25c8822cb8bfe5904ed3b6dcaa344445
size 44476&lt;/PRE&gt;&lt;P&gt;I have code like here:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;        AddColumnWithTable = Table.AddColumn(ExpandedColumn, "ResultTable", each 
            let
                a = Csv.Document(
                    Web.Contents(paramBaseUrlRawGithub, [
                        RelativePath = [RelativePath],
                        Query = [token = [Token]]
                    ]),
                    [Delimiter = ",", QuoteStyle = QuoteStyle.Csv]
                ),
                b = Table.PromoteHeaders(a, [PromoteAllScalars=true])
            in
                b
            )   &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is paramBaseUrlRawGithub:&lt;BR /&gt;&lt;A href="https://raw.githubusercontent.com/" target="_self"&gt;https://raw.githubusercontent.com/&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;How to get it?&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Jacek&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 14:23:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4701754#M61319</guid>
      <dc:creator>jaryszek</dc:creator>
      <dc:date>2025-05-21T14:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4702577#M61327</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107617"&gt;@jaryszek&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're getting a Git LFS pointer file instead of actual CSV content because the file is stored using Git Large File Storage (LFS). raw.githubusercontent.com only returns the pointer file, not the actual data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best fix: Remove the file from Git LFS and commit it as a regular file.&lt;/P&gt;
&lt;P&gt;Alternative: Host the CSV elsewhere (e.g. SharePoint, Azure Blob, or a direct-download server).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this solution helped, please consider marking the response as accepted and giving it a thumbs-up so others can benefit as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 04:04:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4702577#M61327</guid>
      <dc:creator>v-pgoloju</dc:creator>
      <dc:date>2025-05-22T04:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4702675#M61329</link>
      <description>&lt;P&gt;thanks it helped if you want to change your whole model but still is not a great solution.&amp;nbsp;&lt;BR /&gt;It has to be LFS file by design it is higher than 100 mb and I am looking to get this file using power query and provided sha.&lt;BR /&gt;&lt;BR /&gt;What about Custom Git Connector?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have one, maybe here i could post the statement like here&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://gist.github.com/fkraeutli/66fa741d9a8c2a6a238a01d17ed0edc5&lt;/LI-CODE&gt;&lt;P&gt;I have Github connector like here:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// GitHub Connector for Power BI (Standard GitHub OAuth)
[Version = "1.0.0"]
section GitHub;

client_id = "minenumber";
client_secret = "minenumber";

[DataSource.Kind="GitHub", Publish="GitHub.Publish"]
shared GitHub.Contents = (relativePath as text, optional folderPath as text, optional branchName as text) =&amp;gt;
    let
        baseUrl = "https://api.github.com/repos/Company/",
        refBranch = if branchName &amp;lt;&amp;gt; null then "?ref=" &amp;amp; branchName else "?ref=develop",
        url = relativePath &amp;amp; "/contents/" &amp;amp; folderPath &amp;amp; refBranch,

        source = Json.Document(Web.Contents(baseUrl, [
            RelativePath = url,
            Headers = [
                #"Authorization" = "Bearer " &amp;amp; Extension.CurrentCredential()[access_token],
                #"User-Agent" = "PowerQuery"
            ]
        ]))
    in
        source;

GitHub = [
    Authentication = [
        OAuth = [
            StartLogin = (resourceUrl, state, display) =&amp;gt;
                let
                    authorizeUrl = "https://github.com/login/oauth/authorize?" &amp;amp;
                        "client_id=" &amp;amp; client_id &amp;amp;
                        "&amp;amp;redirect_uri=https://oauth.powerbi.com/views/oauthredirect.html" &amp;amp;
                        "&amp;amp;scope=repo" &amp;amp;
                        "&amp;amp;state=" &amp;amp; state
                in
                    [
                        LoginUri = authorizeUrl,
                        CallbackUri = "https://oauth.powerbi.com/views/oauthredirect.html",
                        WindowHeight = 720,
                        WindowWidth = 1024,
                        Context = null
                    ],

            FinishLogin = (context, callbackUri, state) =&amp;gt;
                let
                    parts = Uri.Parts(callbackUri)[Query],
                    code = parts[code],
                    access_token_response = Json.Document(Web.Contents("https://github.com/login/oauth/access_token", [
                        Content = Text.ToBinary("client_id=" &amp;amp; client_id &amp;amp; "&amp;amp;client_secret=" &amp;amp; client_secret &amp;amp; "&amp;amp;code=" &amp;amp; code),
                        Headers = [
                            #"Content-Type" = "application/x-www-form-urlencoded",
                            Accept = "application/json"
                        ]
                    ])),
                    access_token = access_token_response[access_token]
                in
                    [
                        access_token = access_token
                    ],

            Refresh = (resourceUrl, refresh_token) =&amp;gt; error "GitHub does not support refresh tokens.",
            TestConnection = (access_token_record) =&amp;gt; {"https://api.github.com/user"},
            AccessToken = (access_token_record) =&amp;gt; "Bearer " &amp;amp; access_token_record[access_token]
        ]
    ]
];

GitHub.Publish = [
    Beta = true,
    Category = "Other",
    ButtonText = { Extension.LoadString("ButtonTitle"), Extension.LoadString("ButtonHelp") },
    LearnMoreUrl = "https://powerbi.microsoft.com/",
    SourceImage = GitHub.Icons,
    SourceTypeImage = GitHub.Icons
];

GitHub.Icons = [
    Icon16 = { Extension.Contents("GitHub16.png"), Extension.Contents("GitHub20.png"), Extension.Contents("GitHub24.png"), Extension.Contents("GitHub32.png") },
    Icon32 = { Extension.Contents("GitHub32.png"), Extension.Contents("GitHub40.png"), Extension.Contents("GitHub48.png"), Extension.Contents("GitHub64.png") }
];&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Still need help on this!&lt;BR /&gt;Jacek&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 05:18:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4702675#M61329</guid>
      <dc:creator>jaryszek</dc:creator>
      <dc:date>2025-05-22T05:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4703123#M61334</link>
      <description>&lt;P&gt;ok so i managed to add new funtion (it has to have the same parameters like in the first one - this is a huge Microsoft bug like always!!!:&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=U9lqXCiGa08" target="_self"&gt;https://www.youtube.com/watch?v=U9lqXCiGa08&lt;/A&gt;&amp;nbsp;)&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[DataSource.Kind="GitHub", Publish="GitHub.Publish"]
shared GitHub.LfsDownloadUrl = (relativePath as text, optional folderPath as text, optional branchName as text) =&amp;gt;
    let
        sizeNumber = Number.FromText(folderPath),
        body = Json.FromValue([
            operation = "download",
            transfer = {"basic"},
            objects = {
                [ oid = relativePath, size = sizeNumber ]
            }
        ]),
        UrlLfs = "MyCompany" &amp;amp; "/" &amp;amp; branchName &amp;amp; ".git/info/lfs/objects/batch",
        result = Json.Document(Web.Contents("https://github.com", [
            RelativePath = UrlLfs,
            Content = body,
            Headers = [
                #"Authorization" = "Bearer " &amp;amp; Extension.CurrentCredential()[access_token],
                #"Content-Type" = "application/vnd.git-lfs+json",
                Accept = "application/vnd.git-lfs+json",
                #"User-Agent" = "PowerQuery"
            ]
        ])),
        url = result[objects]{0}[actions][download][href]
    in
        url;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and this work, i got fully downaloded link in power querY:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jaryszek_0-1747903861260.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1270353i6F284A3ED1AD480F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jaryszek_0-1747903861260.png" alt="jaryszek_0-1747903861260.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The issue is that i need to add credentials for this file always...why this is not using my GitHub credentials?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Jacek&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 08:51:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4703123#M61334</guid>
      <dc:creator>jaryszek</dc:creator>
      <dc:date>2025-05-22T08:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4704696#M61361</link>
      <description>&lt;P&gt;Ok i tried using this tip:&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/power-query/handling-resource-path" target="_blank"&gt;https://learn.microsoft.com/en-us/power-query/handling-resource-path&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;my code changed to implement it :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;shared GitHub.Contents = Value.ReplaceType(GitHubContentsImpl,
type function (
repo as (text meta [DataSource.Path = false]),
filePath as (text meta [DataSource.Path = false]),
optional branch as nullable text
) as any
);&lt;/LI-CODE&gt;&lt;P&gt;but it didnt work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;It is still asking twice about credentials for each repository. It is possible to turn this off?&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Jacek&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 07:22:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4704696#M61361</guid>
      <dc:creator>jaryszek</dc:creator>
      <dc:date>2025-05-23T07:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4705040#M61368</link>
      <description>&lt;P&gt;Ok so implementation for GitHub connector is:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[DataSource.Kind = "GitHub", Publish = "GitHub.Publish"]
shared GitHub.Contents = Value.ReplaceType(
    GitHubContentsImpl,
    type function (
        repo     as (type text meta [Documentation.FieldCaption="Repository (e.g. org/repo)", DataSource.Path=false]),
        filePath as (type text meta [Documentation.FieldCaption="File path in repo", DataSource.Path=false]),
        optional branch as (type nullable text meta [Documentation.FieldCaption="Branch (optional)", DataSource.Path=false])
    ) as any
);

GitHubContentsImpl = (repo as text, filePath as text, optional branch as nullable text) =&amp;gt;
    let
        actualBranch = if branch &amp;lt;&amp;gt; null then branch else "main",
        baseUrl = "https://api.github.com",
        relativeUrl  = "repos/xxx/" &amp;amp; repo &amp;amp; "/contents/" &amp;amp; filePath &amp;amp; "?ref=" &amp;amp; actualBranch,

        response = Json.Document(Web.Contents(baseUrl, [
            RelativePath = relativeUrl,
            Headers = [
                #"Authorization" = "Bearer " &amp;amp; Extension.CurrentCredential()[access_token],
                #"User-Agent" = "PowerQuery"
            ]
        ]))
    in
        response;

GitHub = [
    TestConnection = () =&amp;gt; { "https://api.github.com" },&lt;/LI-CODE&gt;&lt;P&gt;and it worked, it is asking only once!!&lt;/P&gt;&lt;P&gt;What about GitHubCloud connector? How to make this the same?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// GitHubCloud Connector for Power BI (Standard GitHub OAuth)
[Version = "1.0.0"]
section GitHubCloud;

client_id = "11111";
client_secret = "222222";

[DataSource.Kind="GitHubCloud", Publish="GitHubCloud.Publish"]
shared GitHubCloud.LfsCsv = (relativePath as text, optional folderPath as text, optional branchName as text) =&amp;gt;
    let
        downloadUrl = 
            let
                sizeNumber = Number.FromText(folderPath),
                body = Json.FromValue([
                    operation = "download",
                    transfer = {"basic"},
                    objects = {
                        [ oid = relativePath, size = sizeNumber ]
                    }
                ]),
                UrlLfs = "xxxx" &amp;amp; "/" &amp;amp; branchName &amp;amp; ".git/info/lfs/objects/batch",
                result = Json.Document(Web.Contents("https://github.com", [
                    RelativePath = UrlLfs,
                    Content = body,
                    Headers = [
                        #"Authorization" = "Bearer " &amp;amp; Extension.CurrentCredential()[access_token],
                        #"Content-Type" = "application/vnd.git-lfs+json",
                        Accept = "application/vnd.git-lfs+json",
                        #"User-Agent" = "PowerQuery"
                    ]
                ])),
                url = result[objects]{0}[actions][download][href]
            in
                url,
        csvContent = Csv.Document(Web.Contents(downloadUrl)),
        final = Table.PromoteHeaders(csvContent)
    in
        final;

GitHubCloud = [
    TestConnection = (token) =&amp;gt; {"https://github.com"},
    Authentication = [
        OAuth = [
            StartLogin = (resourceUrl, state, display) =&amp;gt; [
                LoginUri = "https://github.com/login/oauth/authorize?" &amp;amp;
                    "client_id=" &amp;amp; client_id &amp;amp;
                    "&amp;amp;redirect_uri=https://oauth.powerbi.com/views/oauthredirect.html" &amp;amp;
                    "&amp;amp;scope=repo" &amp;amp;
                    "&amp;amp;state=" &amp;amp; state,
                CallbackUri = "https://oauth.powerbi.com/views/oauthredirect.html",
                WindowHeight = 720,
                WindowWidth = 1024,
                Context = null
            ],
            FinishLogin = (context, callbackUri, state) =&amp;gt;
                let
                    parts = Uri.Parts(callbackUri)[Query],
                    code = parts[code],
                    tokenResponse = Json.Document(Web.Contents("https://github.com/login/oauth/access_token", [
                        Content = Text.ToBinary("client_id=" &amp;amp; client_id &amp;amp; "&amp;amp;client_secret=" &amp;amp; client_secret &amp;amp; "&amp;amp;code=" &amp;amp; code),
                        Headers = [#"Content-Type"="application/x-www-form-urlencoded", Accept="application/json"]
                    ])),
                    access_token = tokenResponse[access_token]
                in
                    [access_token = access_token],
            Refresh = (resourceUrl, refresh_token) =&amp;gt; error "GitHub doesn't support refresh tokens",
            AccessToken = (token) =&amp;gt; "Bearer " &amp;amp; token[access_token]
        ]
    ],
    Label = "GitHub LFS OAuth Connector"
];

GitHubCloud.Publish = [
    Beta = true,
    Category = "Other",
    ButtonText = {"GitHubCloud", "Download LFS files"},
    SourceImage = GitHubCloud.Icons,
    SourceTypeImage = GitHubCloud.Icons
];

GitHubCloud.Icons = [
    Icon16 = { Extension.Contents("GitHub16.png"), Extension.Contents("GitHub20.png"), Extension.Contents("GitHub24.png"), Extension.Contents("GitHub32.png") },
    Icon32 = { Extension.Contents("GitHub32.png"), Extension.Contents("GitHub40.png"), Extension.Contents("GitHub48.png"), Extension.Contents("GitHub64.png") }
];&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;The problem here I am asking github twice. First is just github to get answer:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;result = Json.Document(Web.Contents("https://github.com", [​&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;but next one i am getting row url:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;url = result[objects]{0}[actions][download][href] in url, csvContent = Csv.Document(Web.Contents(downloadUrl)),
final = Table.PromoteHeaders(csvContent)​&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;but here also i am asking Web.Contents once again and i think this is why power bi has to ask about credentials per table...So if i have 5 tables and each tables in repo i am asking about them 5 times, 5 times i need to use credentials for them.&lt;/P&gt;&lt;P&gt;how to avoid this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;BR /&gt;Jacek&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 11:00:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4705040#M61368</guid>
      <dc:creator>jaryszek</dc:creator>
      <dc:date>2025-05-23T11:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4708206#M61429</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107617"&gt;@jaryszek&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the issue still persists, I’d recommend raising a support ticket with Microsoft. The support team can look into the backend and provide more in-depth assistance tailored to your environment.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank"&gt;https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If this solution helped, please consider marking the response as accepted and giving it a thumbs-up so others can benefit as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 05:17:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4708206#M61429</guid>
      <dc:creator>v-pgoloju</dc:creator>
      <dc:date>2025-05-27T05:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4713133#M61510</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107617"&gt;@jaryszek&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just checking, have you had a chance to open a support ticket, as suggested. If so, we'd love to hear the current status or any updates from that.&lt;/P&gt;
&lt;P&gt;If the issue was resolved through the support ticket, it would be great if you could share the solution here as well. It could really help other community members find answers more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 02:27:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4713133#M61510</guid>
      <dc:creator>v-pgoloju</dc:creator>
      <dc:date>2025-05-30T02:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to git lfs file on github?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4716071#M61556</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107617"&gt;@jaryszek&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you and there are no further queries at this time, we’ll proceed to close this thread for now.&lt;BR /&gt;Should you need any additional assistance, please feel free to start a new thread we’re always happy to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 05:56:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-connect-to-git-lfs-file-on-github/m-p/4716071#M61556</guid>
      <dc:creator>v-pgoloju</dc:creator>
      <dc:date>2025-06-02T05:56:00Z</dc:date>
    </item>
  </channel>
</rss>

