Is it possible to get commit logs/messages of a remote git repo without git cloneCommit history on remote repositoryFetch remote log, not the commitsDo I need to do a Git Clone?Find out the date/time for the last update of a branch in a remote Git repository via command linegit - list tag message on remote repositoriesIs it possible to get remote git log to gather full commit history of a repository?git archive with last commit message - why is this not possible? or is it?bitbucket log command without local cloneExtract meta information from Git, allow git log without fetching full repoHow to get git logs directly from github.com without checking out the repo?How to clone all remote branches in Git?Git for beginners: The definitive practical guideHow to tell which commit a tag points to in Git?Rollback to an old Git commit in a public repoUndo a particular commit in Git that's been pushed to remote reposHow can I view a git log of just one user's commits?How to use git merge --squash?How do I properly force a Git push?Git - fatal: Unable to create '/path/my_project/.git/index.lock': File existsVarious ways to remove local Git changes

How to draw lines on a tikz-cd diagram

Did Dumbledore lie to Harry about how long he had James Potter's invisibility cloak when he was examining it? If so, why?

Would a high gravity rocky planet be guaranteed to have an atmosphere?

Opposite of a diet

Why Were Madagascar and New Zealand Discovered So Late?

Risk of infection at the gym?

How do I go from 300 unfinished/half written blog posts, to published posts?

How to write papers efficiently when English isn't my first language?

Balance Issues for a Custom Sorcerer Variant

Term for the "extreme-extension" version of a straw man fallacy?

Do all network devices need to make routing decisions, regardless of communication across networks or within a network?

Is a stroke of luck acceptable after a series of unfavorable events?

How long to clear the 'suck zone' of a turbofan after start is initiated?

I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?

Increase performance creating Mandelbrot set in python

Was Spock the First Vulcan in Starfleet?

How did Arya survive the stabbing?

Large drywall patch supports

Gears on left are inverse to gears on right?

Two monoidal structures and copowering

Trouble understanding the speech of overseas colleagues

Go Pregnant or Go Home

Unreliable Magic - Is it worth it?

Why are there no referendums in the US?



Is it possible to get commit logs/messages of a remote git repo without git clone


Commit history on remote repositoryFetch remote log, not the commitsDo I need to do a Git Clone?Find out the date/time for the last update of a branch in a remote Git repository via command linegit - list tag message on remote repositoriesIs it possible to get remote git log to gather full commit history of a repository?git archive with last commit message - why is this not possible? or is it?bitbucket log command without local cloneExtract meta information from Git, allow git log without fetching full repoHow to get git logs directly from github.com without checking out the repo?How to clone all remote branches in Git?Git for beginners: The definitive practical guideHow to tell which commit a tag points to in Git?Rollback to an old Git commit in a public repoUndo a particular commit in Git that's been pushed to remote reposHow can I view a git log of just one user's commits?How to use git merge --squash?How do I properly force a Git push?Git - fatal: Unable to create '/path/my_project/.git/index.lock': File existsVarious ways to remove local Git changes













27















Is it possible to get commit logs/messages of a remote git repo without git clone?



The git repo I am working with is huge, even if I run git clone with --depth=1 still takes sometime before I am able to clone it.



I am looking for something like this,



git remote-log .



I have also looked in to git -ls-remote, which only provides the SHA and the Heads/tags. I am interested in getting the last 2 commit title, commit user and commit SHA?



Anyone know how to do that?










share|improve this question



















  • 2





    I can't believe this is not possible. This is ridiculous. SVN is better than this...

    – Mehrdad
    Mar 15 '18 at 22:45















27















Is it possible to get commit logs/messages of a remote git repo without git clone?



The git repo I am working with is huge, even if I run git clone with --depth=1 still takes sometime before I am able to clone it.



I am looking for something like this,



git remote-log .



I have also looked in to git -ls-remote, which only provides the SHA and the Heads/tags. I am interested in getting the last 2 commit title, commit user and commit SHA?



Anyone know how to do that?










share|improve this question



















  • 2





    I can't believe this is not possible. This is ridiculous. SVN is better than this...

    – Mehrdad
    Mar 15 '18 at 22:45













27












27








27


3






Is it possible to get commit logs/messages of a remote git repo without git clone?



The git repo I am working with is huge, even if I run git clone with --depth=1 still takes sometime before I am able to clone it.



I am looking for something like this,



git remote-log .



I have also looked in to git -ls-remote, which only provides the SHA and the Heads/tags. I am interested in getting the last 2 commit title, commit user and commit SHA?



Anyone know how to do that?










share|improve this question
















Is it possible to get commit logs/messages of a remote git repo without git clone?



The git repo I am working with is huge, even if I run git clone with --depth=1 still takes sometime before I am able to clone it.



I am looking for something like this,



git remote-log .



I have also looked in to git -ls-remote, which only provides the SHA and the Heads/tags. I am interested in getting the last 2 commit title, commit user and commit SHA?



Anyone know how to do that?







git bash git-stash






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 15 '15 at 11:40









SQB

3,61411743




3,61411743










asked Nov 18 '13 at 18:46









Murtaza PitalwalaMurtaza Pitalwala

3191412




3191412







  • 2





    I can't believe this is not possible. This is ridiculous. SVN is better than this...

    – Mehrdad
    Mar 15 '18 at 22:45












  • 2





    I can't believe this is not possible. This is ridiculous. SVN is better than this...

    – Mehrdad
    Mar 15 '18 at 22:45







2




2





I can't believe this is not possible. This is ridiculous. SVN is better than this...

– Mehrdad
Mar 15 '18 at 22:45





I can't believe this is not possible. This is ridiculous. SVN is better than this...

– Mehrdad
Mar 15 '18 at 22:45












5 Answers
5






active

oldest

votes


















11














If you are looking to see the last few commits of a branch, try:



git clone -b [branch name] --single-branch [repo url] --depth=3


This will clone only the last 3 commits on the branch you are interested. Once done you can get into the cloned repo and view the history.






share|improve this answer

























  • Thanks Noob for the help. I will accept this as an answer, but I was just wondering if there is a way to look at the git log without downloading the whole repo itself or downloading just the logs of the repo instead of full repo.

    – Murtaza Pitalwala
    Nov 26 '14 at 19:43











  • --depth Implies --single-branch unless --no-single-branch is given :D

    – juanmf
    May 9 '18 at 23:02












  • I would only add to this --bare, so that the working files are not also copied/checked out.

    – joveyol
    Jan 17 at 15:04


















11














There is no way to view a remote log using git log without having a local (cloned) copy. You will need to clone the repository then do what you are wanting. Once cloned, you can then fetch different remotes and do a git log <remote>/<branch>. An alternative method would be to use software on the server that would allow you to view remote git history through some type of service (such as Stash, GitHub Enterprise, etc.)



See Commit history on remote repository



If you'd like to read more about it, this is a great resource: http://git-scm.com/book/en/Git-Basics-Viewing-the-Commit-History






share|improve this answer




















  • 2





    Hello Aust, if the repository is huge and all I want to see who commited last, what was the commit title and the SHA, I would still have to download all the files?

    – Murtaza Pitalwala
    Nov 18 '13 at 19:31







  • 1





    Unfortunately, yes. See stackoverflow.com/questions/10736412/…

    – aust
    Nov 18 '13 at 19:35






  • 1





    Ok Thanks for the help. Since there is no way of doing it, I will accept your 'answer'

    – Murtaza Pitalwala
    Nov 18 '13 at 20:57












  • No is a strong world :P. I'd point out that this is technically possible. Git uses git-fetch-pack which can fetch individual git objects and git-ls-remote to the names of objects (this page discusses the types and relations of git objects) you could in theory use this to fetch any subset of git you want.

    – Att Righ
    Jul 22 '18 at 12:48



















6














Not the exact, but a way around.



Use GitHub Developer API



1. Opening this will get you the recent commits.

https://api.github.com/repos/learningequality/ka-lite/commits

You can get the specific commit details by attaching the commit hash in the end of above url.

2. All the files ( You need sha for the main tree)

https://api.github.com/repos/learningequality/ka-lite/git/trees/7b698a988683b161bdcd48a949b01e2b336b4c01


I hope this may help.






share|improve this answer


















  • 1





    I guess this just works with GitHub repositories.

    – Jeyanthan I
    Jul 31 '17 at 9:09


















0














I came across this problem. In my case, I had access .git file. I was able to extract information from it using following:



git --git-dir=path/to/your/xyz.git log





share|improve this answer






























    0














    From https://www.npmjs.com/package/smk



    npm install -g smk
    curl https://api.github.com/repos/gamonoid/icehrm/commits | smk -a -f"(data) => JSON.parse(data.join('')).map((commit) => commit.commit.message).join("rn")"





    share|improve this answer






















      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f20055398%2fis-it-possible-to-get-commit-logs-messages-of-a-remote-git-repo-without-git-clon%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      5 Answers
      5






      active

      oldest

      votes








      5 Answers
      5






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      11














      If you are looking to see the last few commits of a branch, try:



      git clone -b [branch name] --single-branch [repo url] --depth=3


      This will clone only the last 3 commits on the branch you are interested. Once done you can get into the cloned repo and view the history.






      share|improve this answer

























      • Thanks Noob for the help. I will accept this as an answer, but I was just wondering if there is a way to look at the git log without downloading the whole repo itself or downloading just the logs of the repo instead of full repo.

        – Murtaza Pitalwala
        Nov 26 '14 at 19:43











      • --depth Implies --single-branch unless --no-single-branch is given :D

        – juanmf
        May 9 '18 at 23:02












      • I would only add to this --bare, so that the working files are not also copied/checked out.

        – joveyol
        Jan 17 at 15:04















      11














      If you are looking to see the last few commits of a branch, try:



      git clone -b [branch name] --single-branch [repo url] --depth=3


      This will clone only the last 3 commits on the branch you are interested. Once done you can get into the cloned repo and view the history.






      share|improve this answer

























      • Thanks Noob for the help. I will accept this as an answer, but I was just wondering if there is a way to look at the git log without downloading the whole repo itself or downloading just the logs of the repo instead of full repo.

        – Murtaza Pitalwala
        Nov 26 '14 at 19:43











      • --depth Implies --single-branch unless --no-single-branch is given :D

        – juanmf
        May 9 '18 at 23:02












      • I would only add to this --bare, so that the working files are not also copied/checked out.

        – joveyol
        Jan 17 at 15:04













      11












      11








      11







      If you are looking to see the last few commits of a branch, try:



      git clone -b [branch name] --single-branch [repo url] --depth=3


      This will clone only the last 3 commits on the branch you are interested. Once done you can get into the cloned repo and view the history.






      share|improve this answer















      If you are looking to see the last few commits of a branch, try:



      git clone -b [branch name] --single-branch [repo url] --depth=3


      This will clone only the last 3 commits on the branch you are interested. Once done you can get into the cloned repo and view the history.







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited Nov 26 '14 at 9:55









      fedorqui

      172k54357395




      172k54357395










      answered Nov 26 '14 at 9:39









      NoobNoob

      13412




      13412












      • Thanks Noob for the help. I will accept this as an answer, but I was just wondering if there is a way to look at the git log without downloading the whole repo itself or downloading just the logs of the repo instead of full repo.

        – Murtaza Pitalwala
        Nov 26 '14 at 19:43











      • --depth Implies --single-branch unless --no-single-branch is given :D

        – juanmf
        May 9 '18 at 23:02












      • I would only add to this --bare, so that the working files are not also copied/checked out.

        – joveyol
        Jan 17 at 15:04

















      • Thanks Noob for the help. I will accept this as an answer, but I was just wondering if there is a way to look at the git log without downloading the whole repo itself or downloading just the logs of the repo instead of full repo.

        – Murtaza Pitalwala
        Nov 26 '14 at 19:43











      • --depth Implies --single-branch unless --no-single-branch is given :D

        – juanmf
        May 9 '18 at 23:02












      • I would only add to this --bare, so that the working files are not also copied/checked out.

        – joveyol
        Jan 17 at 15:04
















      Thanks Noob for the help. I will accept this as an answer, but I was just wondering if there is a way to look at the git log without downloading the whole repo itself or downloading just the logs of the repo instead of full repo.

      – Murtaza Pitalwala
      Nov 26 '14 at 19:43





      Thanks Noob for the help. I will accept this as an answer, but I was just wondering if there is a way to look at the git log without downloading the whole repo itself or downloading just the logs of the repo instead of full repo.

      – Murtaza Pitalwala
      Nov 26 '14 at 19:43













      --depth Implies --single-branch unless --no-single-branch is given :D

      – juanmf
      May 9 '18 at 23:02






      --depth Implies --single-branch unless --no-single-branch is given :D

      – juanmf
      May 9 '18 at 23:02














      I would only add to this --bare, so that the working files are not also copied/checked out.

      – joveyol
      Jan 17 at 15:04





      I would only add to this --bare, so that the working files are not also copied/checked out.

      – joveyol
      Jan 17 at 15:04













      11














      There is no way to view a remote log using git log without having a local (cloned) copy. You will need to clone the repository then do what you are wanting. Once cloned, you can then fetch different remotes and do a git log <remote>/<branch>. An alternative method would be to use software on the server that would allow you to view remote git history through some type of service (such as Stash, GitHub Enterprise, etc.)



      See Commit history on remote repository



      If you'd like to read more about it, this is a great resource: http://git-scm.com/book/en/Git-Basics-Viewing-the-Commit-History






      share|improve this answer




















      • 2





        Hello Aust, if the repository is huge and all I want to see who commited last, what was the commit title and the SHA, I would still have to download all the files?

        – Murtaza Pitalwala
        Nov 18 '13 at 19:31







      • 1





        Unfortunately, yes. See stackoverflow.com/questions/10736412/…

        – aust
        Nov 18 '13 at 19:35






      • 1





        Ok Thanks for the help. Since there is no way of doing it, I will accept your 'answer'

        – Murtaza Pitalwala
        Nov 18 '13 at 20:57












      • No is a strong world :P. I'd point out that this is technically possible. Git uses git-fetch-pack which can fetch individual git objects and git-ls-remote to the names of objects (this page discusses the types and relations of git objects) you could in theory use this to fetch any subset of git you want.

        – Att Righ
        Jul 22 '18 at 12:48
















      11














      There is no way to view a remote log using git log without having a local (cloned) copy. You will need to clone the repository then do what you are wanting. Once cloned, you can then fetch different remotes and do a git log <remote>/<branch>. An alternative method would be to use software on the server that would allow you to view remote git history through some type of service (such as Stash, GitHub Enterprise, etc.)



      See Commit history on remote repository



      If you'd like to read more about it, this is a great resource: http://git-scm.com/book/en/Git-Basics-Viewing-the-Commit-History






      share|improve this answer




















      • 2





        Hello Aust, if the repository is huge and all I want to see who commited last, what was the commit title and the SHA, I would still have to download all the files?

        – Murtaza Pitalwala
        Nov 18 '13 at 19:31







      • 1





        Unfortunately, yes. See stackoverflow.com/questions/10736412/…

        – aust
        Nov 18 '13 at 19:35






      • 1





        Ok Thanks for the help. Since there is no way of doing it, I will accept your 'answer'

        – Murtaza Pitalwala
        Nov 18 '13 at 20:57












      • No is a strong world :P. I'd point out that this is technically possible. Git uses git-fetch-pack which can fetch individual git objects and git-ls-remote to the names of objects (this page discusses the types and relations of git objects) you could in theory use this to fetch any subset of git you want.

        – Att Righ
        Jul 22 '18 at 12:48














      11












      11








      11







      There is no way to view a remote log using git log without having a local (cloned) copy. You will need to clone the repository then do what you are wanting. Once cloned, you can then fetch different remotes and do a git log <remote>/<branch>. An alternative method would be to use software on the server that would allow you to view remote git history through some type of service (such as Stash, GitHub Enterprise, etc.)



      See Commit history on remote repository



      If you'd like to read more about it, this is a great resource: http://git-scm.com/book/en/Git-Basics-Viewing-the-Commit-History






      share|improve this answer















      There is no way to view a remote log using git log without having a local (cloned) copy. You will need to clone the repository then do what you are wanting. Once cloned, you can then fetch different remotes and do a git log <remote>/<branch>. An alternative method would be to use software on the server that would allow you to view remote git history through some type of service (such as Stash, GitHub Enterprise, etc.)



      See Commit history on remote repository



      If you'd like to read more about it, this is a great resource: http://git-scm.com/book/en/Git-Basics-Viewing-the-Commit-History







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited May 23 '17 at 10:31









      Community

      11




      11










      answered Nov 18 '13 at 18:51









      austaust

      809412




      809412







      • 2





        Hello Aust, if the repository is huge and all I want to see who commited last, what was the commit title and the SHA, I would still have to download all the files?

        – Murtaza Pitalwala
        Nov 18 '13 at 19:31







      • 1





        Unfortunately, yes. See stackoverflow.com/questions/10736412/…

        – aust
        Nov 18 '13 at 19:35






      • 1





        Ok Thanks for the help. Since there is no way of doing it, I will accept your 'answer'

        – Murtaza Pitalwala
        Nov 18 '13 at 20:57












      • No is a strong world :P. I'd point out that this is technically possible. Git uses git-fetch-pack which can fetch individual git objects and git-ls-remote to the names of objects (this page discusses the types and relations of git objects) you could in theory use this to fetch any subset of git you want.

        – Att Righ
        Jul 22 '18 at 12:48













      • 2





        Hello Aust, if the repository is huge and all I want to see who commited last, what was the commit title and the SHA, I would still have to download all the files?

        – Murtaza Pitalwala
        Nov 18 '13 at 19:31







      • 1





        Unfortunately, yes. See stackoverflow.com/questions/10736412/…

        – aust
        Nov 18 '13 at 19:35






      • 1





        Ok Thanks for the help. Since there is no way of doing it, I will accept your 'answer'

        – Murtaza Pitalwala
        Nov 18 '13 at 20:57












      • No is a strong world :P. I'd point out that this is technically possible. Git uses git-fetch-pack which can fetch individual git objects and git-ls-remote to the names of objects (this page discusses the types and relations of git objects) you could in theory use this to fetch any subset of git you want.

        – Att Righ
        Jul 22 '18 at 12:48








      2




      2





      Hello Aust, if the repository is huge and all I want to see who commited last, what was the commit title and the SHA, I would still have to download all the files?

      – Murtaza Pitalwala
      Nov 18 '13 at 19:31






      Hello Aust, if the repository is huge and all I want to see who commited last, what was the commit title and the SHA, I would still have to download all the files?

      – Murtaza Pitalwala
      Nov 18 '13 at 19:31





      1




      1





      Unfortunately, yes. See stackoverflow.com/questions/10736412/…

      – aust
      Nov 18 '13 at 19:35





      Unfortunately, yes. See stackoverflow.com/questions/10736412/…

      – aust
      Nov 18 '13 at 19:35




      1




      1





      Ok Thanks for the help. Since there is no way of doing it, I will accept your 'answer'

      – Murtaza Pitalwala
      Nov 18 '13 at 20:57






      Ok Thanks for the help. Since there is no way of doing it, I will accept your 'answer'

      – Murtaza Pitalwala
      Nov 18 '13 at 20:57














      No is a strong world :P. I'd point out that this is technically possible. Git uses git-fetch-pack which can fetch individual git objects and git-ls-remote to the names of objects (this page discusses the types and relations of git objects) you could in theory use this to fetch any subset of git you want.

      – Att Righ
      Jul 22 '18 at 12:48






      No is a strong world :P. I'd point out that this is technically possible. Git uses git-fetch-pack which can fetch individual git objects and git-ls-remote to the names of objects (this page discusses the types and relations of git objects) you could in theory use this to fetch any subset of git you want.

      – Att Righ
      Jul 22 '18 at 12:48












      6














      Not the exact, but a way around.



      Use GitHub Developer API



      1. Opening this will get you the recent commits.

      https://api.github.com/repos/learningequality/ka-lite/commits

      You can get the specific commit details by attaching the commit hash in the end of above url.

      2. All the files ( You need sha for the main tree)

      https://api.github.com/repos/learningequality/ka-lite/git/trees/7b698a988683b161bdcd48a949b01e2b336b4c01


      I hope this may help.






      share|improve this answer


















      • 1





        I guess this just works with GitHub repositories.

        – Jeyanthan I
        Jul 31 '17 at 9:09















      6














      Not the exact, but a way around.



      Use GitHub Developer API



      1. Opening this will get you the recent commits.

      https://api.github.com/repos/learningequality/ka-lite/commits

      You can get the specific commit details by attaching the commit hash in the end of above url.

      2. All the files ( You need sha for the main tree)

      https://api.github.com/repos/learningequality/ka-lite/git/trees/7b698a988683b161bdcd48a949b01e2b336b4c01


      I hope this may help.






      share|improve this answer


















      • 1





        I guess this just works with GitHub repositories.

        – Jeyanthan I
        Jul 31 '17 at 9:09













      6












      6








      6







      Not the exact, but a way around.



      Use GitHub Developer API



      1. Opening this will get you the recent commits.

      https://api.github.com/repos/learningequality/ka-lite/commits

      You can get the specific commit details by attaching the commit hash in the end of above url.

      2. All the files ( You need sha for the main tree)

      https://api.github.com/repos/learningequality/ka-lite/git/trees/7b698a988683b161bdcd48a949b01e2b336b4c01


      I hope this may help.






      share|improve this answer













      Not the exact, but a way around.



      Use GitHub Developer API



      1. Opening this will get you the recent commits.

      https://api.github.com/repos/learningequality/ka-lite/commits

      You can get the specific commit details by attaching the commit hash in the end of above url.

      2. All the files ( You need sha for the main tree)

      https://api.github.com/repos/learningequality/ka-lite/git/trees/7b698a988683b161bdcd48a949b01e2b336b4c01


      I hope this may help.







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Jan 12 '15 at 10:21









      Anurag KanungoAnurag Kanungo

      21824




      21824







      • 1





        I guess this just works with GitHub repositories.

        – Jeyanthan I
        Jul 31 '17 at 9:09












      • 1





        I guess this just works with GitHub repositories.

        – Jeyanthan I
        Jul 31 '17 at 9:09







      1




      1





      I guess this just works with GitHub repositories.

      – Jeyanthan I
      Jul 31 '17 at 9:09





      I guess this just works with GitHub repositories.

      – Jeyanthan I
      Jul 31 '17 at 9:09











      0














      I came across this problem. In my case, I had access .git file. I was able to extract information from it using following:



      git --git-dir=path/to/your/xyz.git log





      share|improve this answer



























        0














        I came across this problem. In my case, I had access .git file. I was able to extract information from it using following:



        git --git-dir=path/to/your/xyz.git log





        share|improve this answer

























          0












          0








          0







          I came across this problem. In my case, I had access .git file. I was able to extract information from it using following:



          git --git-dir=path/to/your/xyz.git log





          share|improve this answer













          I came across this problem. In my case, I had access .git file. I was able to extract information from it using following:



          git --git-dir=path/to/your/xyz.git log






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jul 5 '18 at 14:04









          JR ibkrJR ibkr

          366112




          366112





















              0














              From https://www.npmjs.com/package/smk



              npm install -g smk
              curl https://api.github.com/repos/gamonoid/icehrm/commits | smk -a -f"(data) => JSON.parse(data.join('')).map((commit) => commit.commit.message).join("rn")"





              share|improve this answer



























                0














                From https://www.npmjs.com/package/smk



                npm install -g smk
                curl https://api.github.com/repos/gamonoid/icehrm/commits | smk -a -f"(data) => JSON.parse(data.join('')).map((commit) => commit.commit.message).join("rn")"





                share|improve this answer

























                  0












                  0








                  0







                  From https://www.npmjs.com/package/smk



                  npm install -g smk
                  curl https://api.github.com/repos/gamonoid/icehrm/commits | smk -a -f"(data) => JSON.parse(data.join('')).map((commit) => commit.commit.message).join("rn")"





                  share|improve this answer













                  From https://www.npmjs.com/package/smk



                  npm install -g smk
                  curl https://api.github.com/repos/gamonoid/icehrm/commits | smk -a -f"(data) => JSON.parse(data.join('')).map((commit) => commit.commit.message).join("rn")"






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 8 at 11:08









                  Thilina HasanthaThilina Hasantha

                  1315




                  1315



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f20055398%2fis-it-possible-to-get-commit-logs-messages-of-a-remote-git-repo-without-git-clon%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

                      Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

                      How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page