2040 Commit

https://forgefed.peers.community/nsCommit

JSON

Inbox

Definition

Represents a named set of changes in the history of a Repository. This is called “commit” in Git, Mercurial and Monotone; “patch” in Darcs; sometimes called “change set”. Note that Commit is a set of changes that already exists in a repo’s history, while a Patch is a separate proposed change set, that could be applied and pushed to a repo, resulting with a Commit.
see 3

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://example.dev/alice/myrepo/commits/109ec9a09c7df7fec775d2ba0b9d466e5643ec8c", "type": "Commit", "context": "https://example.dev/alice/myrepo", "attributedTo": "https://example.dev/bob", "committedBy": "https://example.dev/alice", "hash": "109ec9a09c7df7fec775d2ba0b9d466e5643ec8c", "summary": "Add an installation script, fixes issue #89", "description": { "mediaType": "text/plain", "content": "It's about time people can install on their computers!" }, "created": "2019-07-11T12:34:56Z", "committed": "2019-07-26T23:45:01Z" }