{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":23216272,"defaultBranch":"main","name":"git","ownerLogin":"git-for-windows","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2014-08-22T07:07:36.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/4571183?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1726649909.0","currentOid":""},"activityList":{"items":[{"before":"817a482b7731cd225f742cd3d4ce64c56c68bb21","after":"e519b1a4158e4ad509457026fb22051f4d7a0c07","ref":"refs/heads/shears/maint","pushedAt":"2024-09-18T10:55:18.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"78d0106d97bca226a5440fa17f3a47aacbd2b005","after":"6cd9c8395e996abe49e3fcd4f07364be001f4200","ref":"refs/heads/main","pushedAt":"2024-09-18T10:53:09.000Z","pushType":"push","commitsCount":435,"pusher":{"login":"gitforwindowshelper[bot]","name":null,"path":"/apps/gitforwindowshelper","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/246505?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"d9fbf593671b3b599f93b6c6d09641497f95444f","after":"6dd435091b3be25815b989005d7c0c3c62719f9e","ref":"refs/heads/shears/main","pushedAt":"2024-09-17T08:38:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"cmake: stop looking for `REFTABLE_TEST_OBJS` in the Makefile\n\nAs of 15e29ea1c648 (t: move reftable/stack_test.c to the unit testing\nframework, 2024-09-08), the reftable tests are no longer part of\n`test-tool.exe`, so let's stop looking for those lines that are no\nlonger in the `Makefile`.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"cmake: stop looking for REFTABLE_TEST_OBJS in the Makefile"}},{"before":"d0f6bd8dc7cb11a5c5b14fbc1d5107ae6ed5af7b","after":"291b5bd38c7da031161036f7bef07eb209d11bde","ref":"refs/heads/shears/next","pushedAt":"2024-09-17T07:37:55.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"fixup! add: use preload-index and fscache for performance","shortMessageHtmlLink":"fixup! add: use preload-index and fscache for performance"}},{"before":"270b08c1a756ee9d95da25e04d75ac620af86b06","after":"d9fbf593671b3b599f93b6c6d09641497f95444f","ref":"refs/heads/shears/main","pushedAt":"2024-09-17T05:40:12.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"fb0a2ebf233bcb9a49f61bfbcd59b15b71e8d89d","after":"5d0fb490a9e0378cb132777a554ccb519f33f652","ref":"refs/heads/shears/seen","pushedAt":"2024-09-17T05:39:58.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"cmake: generalize the handling of the `UNIT_TEST_OBJS` list\n\nIn a15d4465a991 (cmake: also build unit tests, 2023-09-25), I\naccommodated the CMake definition. Seeing that a `UNIT_TEST_OBJS` list\nwas introduced that was built by transforming the `UNIT_TEST_PROGRAMS`\nlist and then adding a single, hard-coded file\n(\"t/unit-tests/test-lib.c\"), I decided to hard-code that in the CMake\ndefinition, too.\n\nThe reason why I hard-coded it instead of imitating the\n`parse_makefile_for_sources()` paradigm that was used elsewhere when\nusing the `Makefile` as source of truth for given lists of files: This\nfunction expects _only_ hard-coded values, and that transformed\n`UNIT_TEST_PROGRAMS` list complicated everything.\n\nIn 872721538c26 (cmake: fix build of `t-oidtree`, 2024-07-12), I\naccommodated the CMake definition again, after seeing that the\n`UNIT_TEST_OBJS` was still defined via that transformed list but now\nappending _two_ hard-coded files (\"t/unit-tests/lib-oid.c\" joined the\nfray).\n\nIn e7e6d74d2b71 (Makefile: stop listing test library objects twice,\n2024-09-09), the `Makefile` was changed so that `UNIT_TEST_OBJS` is\nfinally only constructed using hard-coded file names just like the other\n`*_OBJS` variables. I missed that and therefore did not adjust the CMake\ndefinition. Besides, the code was working, so there was no real need to\nadjust it.\n\nWith 4d76732dd749 (t/unit-tests: introduce reftable library,\n2024-09-09), however, the `UNIT_TEST_OBJS` list became a trio, and the\nCMake definition has to be adjusted again. Now that we can use the\n`parse_makefile_for_sources()` function without many complications,\nlet's do that.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"cmake: generalize the handling of the UNIT_TEST_OBJS list"}},{"before":"016740bf4377bbbe07fab2b6ca62fea1b448f2af","after":"817a482b7731cd225f742cd3d4ce64c56c68bb21","ref":"refs/heads/shears/maint","pushedAt":"2024-09-17T05:39:52.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"1aeb4d4c056ad40d166c2766206fad37d6748494","after":"270b08c1a756ee9d95da25e04d75ac620af86b06","ref":"refs/heads/shears/main","pushedAt":"2024-09-16T22:01:09.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Backport `linux32` CI fix from upstream Git (#5145)\n\nThe `linux32` jobs are seeing this error:\r\n\r\n Error: This request has been automatically failed because it uses a\r\n deprecated version of `actions/upload-artifact: v1`. Learn more:\r\n\r\nhttps://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/\r\n\r\nTo maintain CI builds that typically succeed, let's cherry-pick this\r\ninto Git for Windows' `main` branch.","shortMessageHtmlLink":"Backport linux32 CI fix from upstream Git (#5145)"}},{"before":"a95d70caf53b4aa320fc839bc11883b06306d733","after":"fb0a2ebf233bcb9a49f61bfbcd59b15b71e8d89d","ref":"refs/heads/shears/seen","pushedAt":"2024-09-16T22:01:06.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"cmake: generalize the handling of the `UNIT_TEST_OBJS` list\n\nIn a15d4465a991 (cmake: also build unit tests, 2023-09-25), I\naccommodated the CMake definition. Seeing that a `UNIT_TEST_OBJS` list\nwas introduced that was built by transforming the `UNIT_TEST_PROGRAMS`\nlist and then adding a single, hard-coded file\n(\"t/unit-tests/test-lib.c\"), I decided to hard-code that in the CMake\ndefinition, too.\n\nThe reason why I hard-coded it instead of imitating the\n`parse_makefile_for_sources()` paradigm that was used elsewhere when\nusing the `Makefile` as source of truth for given lists of files: This\nfunction expects _only_ hard-coded values, and that transformed\n`UNIT_TEST_PROGRAMS` list complicated everything.\n\nIn 872721538c26 (cmake: fix build of `t-oidtree`, 2024-07-12), I\naccommodated the CMake definition again, after seeing that the\n`UNIT_TEST_OBJS` was still defined via that transformed list but now\nappending _two_ hard-coded files (\"t/unit-tests/lib-oid.c\" joined the\nfray).\n\nIn e7e6d74d2b71 (Makefile: stop listing test library objects twice,\n2024-09-09), the `Makefile` was changed so that `UNIT_TEST_OBJS` is\nfinally only constructed using hard-coded file names just like the other\n`*_OBJS` variables. I missed that and therefore did not adjust the CMake\ndefinition. Besides, the code was working, so there was no real need to\nadjust it.\n\nWith 4d76732dd749 (t/unit-tests: introduce reftable library,\n2024-09-09), however, the `UNIT_TEST_OBJS` list became a trio, and the\nCMake definition has to be adjusted again. Now that we can use the\n`parse_makefile_for_sources()` function without many complications,\nlet's do that.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"cmake: generalize the handling of the UNIT_TEST_OBJS list"}},{"before":"db1ae46c48cf6e207935f141735de6a71f5c7aaa","after":"1aeb4d4c056ad40d166c2766206fad37d6748494","ref":"refs/heads/shears/main","pushedAt":"2024-09-16T11:26:42.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"Backport `linux32` CI fix from upstream Git (#5145)\n\nThe `linux32` jobs are seeing this error:\r\n\r\n Error: This request has been automatically failed because it uses a\r\n deprecated version of `actions/upload-artifact: v1`. Learn more:\r\n\r\nhttps://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/\r\n\r\nTo maintain CI builds that typically succeed, let's cherry-pick this\r\ninto Git for Windows' `main` branch.","shortMessageHtmlLink":"Backport linux32 CI fix from upstream Git (#5145)"}},{"before":"7afc8ed0636a86004c54f90d50aa87008a616c2a","after":"d0f6bd8dc7cb11a5c5b14fbc1d5107ae6ed5af7b","ref":"refs/heads/shears/next","pushedAt":"2024-09-16T11:15:32.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"cmake: rename clar-related variables to avoid confusion\n\nIn c3de556a841f (Makefile: rename clar-related variables to avoid\nconfusion, 2024-09-10) some `Makefile` variables were renamed that were\npartially used by the CMake definition. Adapt the latter to the new lay\nof the land.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"cmake: rename clar-related variables to avoid confusion"}},{"before":"ce427c17f10381d876bb168cc238e774da932441","after":"a95d70caf53b4aa320fc839bc11883b06306d733","ref":"refs/heads/shears/seen","pushedAt":"2024-09-16T11:04:25.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"cmake: generalize the handling of the `UNIT_TEST_OBJS` list\n\nIn a15d4465a991 (cmake: also build unit tests, 2023-09-25), I\naccommodated the CMake definition. Seeing that a `UNIT_TEST_OBJS` list\nwas introduced that was built by transforming the `UNIT_TEST_PROGRAMS`\nlist and then adding a single, hard-coded file\n(\"t/unit-tests/test-lib.c\"), I decided to hard-code that in the CMake\ndefinition, too.\n\nThe reason why I hard-coded it instead of imitating the\n`parse_makefile_for_sources()` paradigm that was used elsewhere when\nusing the `Makefile` as source of truth for given lists of files: This\nfunction expects _only_ hard-coded values, and that transformed\n`UNIT_TEST_PROGRAMS` list complicated everything.\n\nIn 872721538c26 (cmake: fix build of `t-oidtree`, 2024-07-12), I\naccommodated the CMake definition again, after seeing that the\n`UNIT_TEST_OBJS` was still defined via that transformed list but now\nappending _two_ hard-coded files (\"t/unit-tests/lib-oid.c\" joined the\nfray).\n\nIn e7e6d74d2b71 (Makefile: stop listing test library objects twice,\n2024-09-09), the `Makefile` was changed so that `UNIT_TEST_OBJS` is\nfinally only constructed using hard-coded file names just like the other\n`*_OBJS` variables. I missed that and therefore did not adjust the CMake\ndefinition. Besides, the code was working, so there was no real need to\nadjust it.\n\nWith 4d76732dd749 (t/unit-tests: introduce reftable library,\n2024-09-09), however, the `UNIT_TEST_OBJS` list became a trio, and the\nCMake definition has to be adjusted again. Now that we can use the\n`parse_makefile_for_sources()` function without many complications,\nlet's do that.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"cmake: generalize the handling of the UNIT_TEST_OBJS list"}},{"before":"4bc7b84a9d25513acdd0fb681ec5d61ba75edd77","after":"016740bf4377bbbe07fab2b6ca62fea1b448f2af","ref":"refs/heads/shears/maint","pushedAt":"2024-09-16T10:28:44.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Backport `linux32` CI fix from upstream Git (#5145)\n\nThe `linux32` jobs are seeing this error:\r\n\r\n Error: This request has been automatically failed because it uses a\r\n deprecated version of `actions/upload-artifact: v1`. Learn more:\r\n\r\nhttps://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/\r\n\r\nTo maintain CI builds that typically succeed, let's cherry-pick this\r\ninto Git for Windows' `main` branch.","shortMessageHtmlLink":"Backport linux32 CI fix from upstream Git (#5145)"}},{"before":"d1cf3f7b83c013380b679c3bb9c24f2f05378ce4","after":"78d0106d97bca226a5440fa17f3a47aacbd2b005","ref":"refs/heads/main","pushedAt":"2024-09-16T10:27:15.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"Backport `linux32` CI fix from upstream Git (#5145)\n\nThe `linux32` jobs are seeing this error:\r\n\r\n Error: This request has been automatically failed because it uses a\r\n deprecated version of `actions/upload-artifact: v1`. Learn more:\r\n\r\nhttps://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/\r\n\r\nTo maintain CI builds that typically succeed, let's cherry-pick this\r\ninto Git for Windows' `main` branch.","shortMessageHtmlLink":"Backport linux32 CI fix from upstream Git (#5145)"}},{"before":"6b45c7005cb5722a401c5383193a42e0aa2e3627","after":"4bc7b84a9d25513acdd0fb681ec5d61ba75edd77","ref":"refs/heads/shears/maint","pushedAt":"2024-09-14T16:16:07.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"392d0137e3d93eafc9a9b18fef45d09d2e5cbd6e","after":"ce427c17f10381d876bb168cc238e774da932441","ref":"refs/heads/shears/seen","pushedAt":"2024-09-13T16:52:28.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"fixup! CMake: show Win32 and Generator_platform build-option values\n\nFix a tyop.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"fixup! CMake: show Win32 and Generator_platform build-option values"}},{"before":"6172114baf6ef684ea08d2f9bb5ac4df3e636958","after":"db1ae46c48cf6e207935f141735de6a71f5c7aaa","ref":"refs/heads/shears/main","pushedAt":"2024-09-13T15:51:15.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"fixup! Introduce helper to create symlinks that knows about index_state","shortMessageHtmlLink":"fixup! Introduce helper to create symlinks that knows about index_state"}},{"before":"41ed15838a36c598e16aff103e21f9eb19d42fc5","after":"7afc8ed0636a86004c54f90d50aa87008a616c2a","ref":"refs/heads/shears/next","pushedAt":"2024-09-13T15:50:21.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"fixup! Introduce helper to create symlinks that knows about index_state","shortMessageHtmlLink":"fixup! Introduce helper to create symlinks that knows about index_state"}},{"before":"561e7d33185933a6f5ca44e53575fbf0b6b534a6","after":"392d0137e3d93eafc9a9b18fef45d09d2e5cbd6e","ref":"refs/heads/shears/seen","pushedAt":"2024-09-13T15:26:17.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"fixup! Introduce helper to create symlinks that knows about index_state","shortMessageHtmlLink":"fixup! Introduce helper to create symlinks that knows about index_state"}},{"before":"c9a2fa1dbdbbbabe81fc0f983256ad9aee3e4173","after":"561e7d33185933a6f5ca44e53575fbf0b6b534a6","ref":"refs/heads/shears/seen","pushedAt":"2024-09-13T14:50:28.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dscho","name":"Johannes Schindelin","path":"/dscho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/127790?s=80&v=4"},"commit":{"message":"fixup! add: use preload-index and fscache for performance","shortMessageHtmlLink":"fixup! add: use preload-index and fscache for performance"}},{"before":"02e23380321883e5bb66e707650932ccde6a6254","after":"c9a2fa1dbdbbbabe81fc0f983256ad9aee3e4173","ref":"refs/heads/shears/seen","pushedAt":"2024-09-13T00:22:01.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"1192289c3c639f1f5fee734dfb24f9aa9f5a0769","after":"41ed15838a36c598e16aff103e21f9eb19d42fc5","ref":"refs/heads/shears/next","pushedAt":"2024-09-12T20:52:05.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"cd1b59f4b294d87938be8b1b11cbf30b2d3bd4e6","after":"02e23380321883e5bb66e707650932ccde6a6254","ref":"refs/heads/shears/seen","pushedAt":"2024-09-12T20:51:58.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"18a4f45aa13237188a053bbbd5f1daa21bb1b1e6","after":"6172114baf6ef684ea08d2f9bb5ac4df3e636958","ref":"refs/heads/shears/main","pushedAt":"2024-09-12T20:51:40.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"87efbafeba95302b114f71d4cd25f5682e3b8702","after":"6b45c7005cb5722a401c5383193a42e0aa2e3627","ref":"refs/heads/shears/maint","pushedAt":"2024-09-12T20:51:38.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"d997def0466a3892c7835736dc33c1ad9842934c","after":"cd1b59f4b294d87938be8b1b11cbf30b2d3bd4e6","ref":"refs/heads/shears/seen","pushedAt":"2024-09-11T21:21:50.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"045d3b355b59a65b08bf098bdea088aa65544692","after":"d997def0466a3892c7835736dc33c1ad9842934c","ref":"refs/heads/shears/seen","pushedAt":"2024-09-11T17:57:54.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"38605d8fe7f99f25986fbfd30e3ffeb5a406b33a","after":"1192289c3c639f1f5fee734dfb24f9aa9f5a0769","ref":"refs/heads/shears/next","pushedAt":"2024-09-11T17:57:35.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"48faa88486aeeb39f4dcb3b9a5d81110c1278a81","after":"38605d8fe7f99f25986fbfd30e3ffeb5a406b33a","ref":"refs/heads/shears/next","pushedAt":"2024-09-11T16:06:49.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}},{"before":"c4081d5b821ceafeab308ab1a3d1adc001686ddb","after":"045d3b355b59a65b08bf098bdea088aa65544692","ref":"refs/heads/shears/seen","pushedAt":"2024-09-11T16:06:35.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"git-for-windows-ci","name":null,"path":"/git-for-windows-ci","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24522801?s=80&v=4"},"commit":{"message":"Merge 'readme' into HEAD\n\nAdd a README.md for GitHub goodness.\n\nSigned-off-by: Johannes Schindelin ","shortMessageHtmlLink":"Merge 'readme' into HEAD"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEuZAyxAA","startCursor":null,"endCursor":null}},"title":"Activity ยท git-for-windows/git"}