https://github.com/SoftwareHeritage/swh-model
Revision f5e56fd3d8026f89e7813d4208352891877bb0cd authored by Nicolas Dandrimont on 11 July 2019, 11:33:05 UTC, committed by Nicolas Dandrimont on 11 July 2019, 11:33:05 UTC
1 parent 69611b2
Raw File
Tip revision: f5e56fd3d8026f89e7813d4208352891877bb0cd authored by Nicolas Dandrimont on 11 July 2019, 11:33:05 UTC
Bootstrap buster-swh
Tip revision: f5e56fd
README.md
swh-model
=========

Implementation of the Data model of the Software Heritage project, used to
archive source code artifacts.

This module defines the notion of Persistent Identifier (PID) and provides
tools to compute them:

```sh
   $ swh-identify fork.c kmod.c sched/deadline.c
   swh:1:cnt:2e391c754ae730bd2d8520c2ab497c403220c6e3    fork.c
   swh:1:cnt:0277d1216f80ae1adeed84a686ed34c9b2931fc2    kmod.c
   swh:1:cnt:57b939c81bce5d06fa587df8915f05affbe22b82    sched/deadline.c

   $ swh-identify --no-filename /usr/src/linux/kernel/
   swh:1:dir:f9f858a48d663b3809c9e2f336412717496202ab
```
back to top