A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/isomorphic-git/isomorphic-git/commit/8e53088a69f4fcff59da1a214a01fa0ebe4e5846 below:

pathological graph traversal in findMergeBase (#1057) Β· isomorphic-git/isomorphic-git@8e53088 Β· GitHub

File tree Expand file treeCollapse file tree 3 files changed

+23

-1

lines changed

Filter options

Expand file treeCollapse file tree 3 files changed

+23

-1

lines changed Original file line number Diff line number Diff line change

@@ -378,6 +378,24 @@

378 378

"doc",

379 379

"test"

380 380

]

381 +

},

382 +

{

383 +

"login": "raon0211",

384 +

"name": "Sojin Park",

385 +

"avatar_url": "https://avatars1.githubusercontent.com/u/3102175?v=4",

386 +

"profile": "https://sojin.io",

387 +

"contributions": [

388 +

"code"

389 +

]

390 +

},

391 +

{

392 +

"login": "ef4",

393 +

"name": "Edward Faulkner",

394 +

"avatar_url": "https://avatars0.githubusercontent.com/u/319282?v=4",

395 +

"profile": "http://eaf4.com",

396 +

"contributions": [

397 +

"code"

398 +

]

381 399

}

382 400

],

383 401

"commitConvention": "angular"

Original file line number Diff line number Diff line change

@@ -370,6 +370,8 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds

370 370

<tr>

371 371

<td align="center"><a href="https://github.com/djencks"><img src="https://avatars2.githubusercontent.com/u/569822?v=4" width="60px;" alt="djencks"/><br /><sub><b>djencks</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/issues?q=author%3Adjencks" title="Bug reports">πŸ›</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=djencks" title="Code">πŸ’»</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=djencks" title="Tests">⚠️</a></td>

372 372

<td align="center"><a href="https://justamouse.com"><img src="https://avatars0.githubusercontent.com/u/1086421?v=4" width="60px;" alt="Clemens Wolff"/><br /><sub><b>Clemens Wolff</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=c-w" title="Code">πŸ’»</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=c-w" title="Documentation">πŸ“–</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=c-w" title="Tests">⚠️</a></td>

373 +

<td align="center"><a href="https://sojin.io"><img src="https://avatars1.githubusercontent.com/u/3102175?v=4" width="60px;" alt="Sojin Park"/><br /><sub><b>Sojin Park</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=raon0211" title="Code">πŸ’»</a></td>

374 +

<td align="center"><a href="http://eaf4.com"><img src="https://avatars0.githubusercontent.com/u/319282?v=4" width="60px;" alt="Edward Faulkner"/><br /><sub><b>Edward Faulkner</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=ef4" title="Code">πŸ’»</a></td>

373 375

</tr>

374 376

</table>

375 377 Original file line number Diff line number Diff line change

@@ -43,7 +43,9 @@ export async function _findMergeBase({ fs, gitdir, oids }) {

43 43

const commit = GitCommit.from(object)

44 44

const { parent } = commit.parseHeaders()

45 45

for (const oid of parent) {

46 -

newheads.push({ oid, index })

46 +

if (!visits[oid] || !visits[oid].has(index)) {

47 +

newheads.push({ oid, index })

48 +

}

47 49

}

48 50

} catch (err) {

49 51

// do nothing

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4