Title: Incorrect commit oid's when aggregated from commit.history() · Issue #81 · nodegit/nodegit · GitHub
Open Graph Title: Incorrect commit oid's when aggregated from commit.history() · Issue #81 · nodegit/nodegit
X Title: Incorrect commit oid's when aggregated from commit.history() · Issue #81 · nodegit/nodegit
Description: If we take the example code that mirrors git log. And have it run on the aggregated commits rather than on each commit event like so: var git = require('nodegit'), async = require('async'); // Open the repository in the current directory...
Open Graph Description: If we take the example code that mirrors git log. And have it run on the aggregated commits rather than on each commit event like so: var git = require('nodegit'), async = require('async'); // Open...
X Description: If we take the example code that mirrors git log. And have it run on the aggregated commits rather than on each commit event like so: var git = require('nodegit'), async = require('asyn...
Opengraph URL: https://github.com/nodegit/nodegit/issues/81
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Incorrect commit oid's when aggregated from commit.history()","articleBody":"If we take the example code that mirrors git log. And have it run on the aggregated commits rather than on each commit event like so:\n\n``` javascript\nvar git = require('nodegit'),\n async = require('async');\n\n// Open the repository in the current directory.\ngit.repo('.git', function(error, repository) {\n if (error) {\n throw error;\n }\n\n // Use the master branch.\n repository.branch('master', function(error, branch) {\n if (error) {\n throw error;\n }\n\n branch.history().on('end', function(err, commits){\n commits.forEach(function(commit){\n // Print out `git log` emulation.\n async.series([\n function(callback) {\n commit.sha(callback);\n },\n function(callback) {\n commit.time(callback);\n },\n function(callback) {\n commit.author(function(error, author) {\n author.name(callback);\n });\n },\n function(callback) {\n commit.author(function(error, author) {\n author.email(callback);\n });\n },\n function(callback) {\n commit.message(callback);\n }\n ], function printCommit(error, results) {\n console.log('SHA ' + results[0]);\n console.log(new Date(results[1] * 1000));\n console.log(results[2] + ' \u003c' + results[3] + '\u003e');\n console.log(results[4]);\n });\n });\n });\n });\n});\n```\n\nThen all the commit sha's are wrong. And most if not all of them point to nonexistant commits. Compare the outputs of the two versions of the program:\n(I edited out the emails)\n\nOriginal in README.md:\n\n```\nSHA a581e81d0205f27ede6a5557431a7ad16b4d4c60\nMon Jan 03 45538 18:06:40 GMT-0500 (EST)\nademoss \u003c------------------------\u003e\nInitial commit\n\nSHA 38e52f3dea8aac939168b4968f7f2688b9ce5a2e\nWed Jul 04 45551 06:20:00 GMT-0400 (EDT)\nAnthony De Moss \u003c------------------------\u003e\n- initial commit\n\nSHA 9976fc4546bca7d152453be2c0c9ca59ca9bad7a\nSat Mar 01 45552 11:03:20 GMT-0500 (EST)\nJohn renner \u003c------------------------\u003e\nInitial implementation\n\nSHA 700636e2d84f29a4ca8cfcc9b1c003c3c018fc7f\nThu Mar 13 45552 10:10:00 GMT-0400 (EDT)\nJohn renner \u003c------------------------\u003e\nFixed silly naming conventions\n```\n\nModified aggregating version:\n\n```\nSHA 0000000046bca7d1f01d00d4607f0000d0c92101\nMon Jan 03 45538 18:06:40 GMT-0500 (EST)\nademoss \u003c------------------------\u003e\nInitial commit\n\nSHA 0000000046bca7d1f01d00d4607f0000d0c92101\nWed Jul 04 45551 06:20:00 GMT-0400 (EDT)\nAnthony De Moss \u003c------------------------\u003e\n- initial commit\n\nSHA 0000000046bca7d1f01d00d4607f0000d0c92101\nSat Mar 01 45552 11:03:20 GMT-0500 (EST)\nJohn renner \u003c------------------------\u003e\nInitial implementation\n\nSHA 48fcde000000000070cd21010000000020fcde00\nThu Mar 13 45552 10:10:00 GMT-0400 (EDT)\nJohn renner \u003c------------------------\u003e\nFixed silly naming conventions\n```\n\nThe original matches the `git log` perfectly. The same thing happens if I try to manually aggregate them instead of using the aggregate provided in `history().on('end')`.\n\nI'm guessing this issue is due to some variable being reused improperly when creating the commits/oid's.\n","author":{"url":"https://github.com/djrenren","@type":"Person","name":"djrenren"},"datePublished":"2013-08-02T20:04:06.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/81/nodegit/issues/81"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:c7acc0fe-5be4-68fe-d8ec-4a0f2ae4bd10 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | B6A2:3E383E:366C6:4881B:6A5FE442 |
| html-safe-nonce | 1a2e6d7d236a56578c6c3a51e1a7002d5b4e46c0aa36efa73883e869845b00ce |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNkEyOjNFMzgzRTozNjZDNjo0ODgxQjo2QTVGRTQ0MiIsInZpc2l0b3JfaWQiOiI4MTI4ODMyNzYzMjIxNTAwOTk0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0= |
| visitor-hmac | 19780a6cab370903818e2e97bd125cd2a3c56703c9943d55f97bcb4fd07d9dc2 |
| hovercard-subject-tag | issue:17578695 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nodegit/nodegit/81/issue_layout |
| twitter:image | https://opengraph.githubassets.com/7cd08a79d609fa307242db71a7fc385c308ff2a18161cceba65a2160089d6156/nodegit/nodegit/issues/81 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/7cd08a79d609fa307242db71a7fc385c308ff2a18161cceba65a2160089d6156/nodegit/nodegit/issues/81 |
| og:image:alt | If we take the example code that mirrors git log. And have it run on the aggregated commits rather than on each commit event like so: var git = require('nodegit'), async = require('async'); // Open... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | djrenren |
| hostname | github.com |
| expected-hostname | github.com |
| None | 78938542173c0d8e4ad1aefc7954896e81c10ce2620286603ef14cf593bd5a11 |
| turbo-cache-control | no-preview |
| go-import | github.com/nodegit/nodegit git https://github.com/nodegit/nodegit.git |
| octolytics-dimension-user_id | 657068 |
| octolytics-dimension-user_login | nodegit |
| octolytics-dimension-repository_id | 1383170 |
| octolytics-dimension-repository_nwo | nodegit/nodegit |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 1383170 |
| octolytics-dimension-repository_network_root_nwo | nodegit/nodegit |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 1a427601e09953033b696253e754ebc7328096a7 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width