feature: adding arrows to the git graph

This commit is contained in:
Knut Sveidqvist
2022-02-24 18:08:09 +01:00
parent cc826289c6
commit 4753ae8ac0
3 changed files with 94 additions and 19 deletions

View File

@@ -6,7 +6,7 @@ export const getCommits = () => {
seq: 1,
message: '',
branch: 'master',
parent: null,
parents: null,
tag: 'v0.1',
commitType: 'normal',
note: null,
@@ -16,7 +16,7 @@ export const getCommits = () => {
seq: 2,
message: '',
branch: 'develop',
parent: '0000001',
parents: ['0000001'],
tag: null,
commitType: 'normal',
note: null,
@@ -26,7 +26,7 @@ export const getCommits = () => {
seq: 3,
message: '',
branch: 'featureB',
parent: '0000002',
parents: ['0000002'],
tag: null,
commitType: 'normal',
note: null,
@@ -36,7 +36,7 @@ export const getCommits = () => {
seq: 4,
message: '',
branch: 'hotfix',
parent: '0000001',
parents: ['0000001'],
tag: null,
commitType: 'normal',
note: null,
@@ -46,7 +46,7 @@ export const getCommits = () => {
seq: 5,
message: '',
branch: 'develop',
parent: '0000002',
parents: ['0000002'],
tag: null,
commitType: 'normal',
note: null,
@@ -56,7 +56,7 @@ export const getCommits = () => {
seq: 6,
message: '',
branch: 'featureB',
parent: '0000003',
parents: ['0000003'],
tag: null,
commitType: 'normal',
note: null,
@@ -66,7 +66,7 @@ export const getCommits = () => {
seq: 7,
message: '',
branch: 'master',
parent: '0000004',
parents: ['0000004'],
tag: 'v0.2',
commitType: 'normal',
note: null,
@@ -76,7 +76,7 @@ export const getCommits = () => {
seq: 8,
message: '',
branch: 'featureB',
parent: '0000006',
parents: ['0000006'],
tag: null,
commitType: 'normal',
note: null,
@@ -86,7 +86,7 @@ export const getCommits = () => {
seq: 9,
message: '',
branch: 'featureA',
parent: '0000005',
parents: ['0000005'],
tag: null,
commitType: 'normal',
note: null,
@@ -96,7 +96,7 @@ export const getCommits = () => {
seq: 10,
message: '',
branch: 'develop',
parent: ['0000004', '0000005'],
parents: ['0000004', '0000005'],
tag: null,
commitType: 'normal',
note: null,
@@ -106,7 +106,7 @@ export const getCommits = () => {
seq: 11,
message: '',
branch: 'featureA',
parent: '0000009',
parents: ['0000009'],
tag: null,
commitType: 'normal',
note: '',
@@ -116,7 +116,7 @@ export const getCommits = () => {
seq: 12,
message: '',
branch: 'featureB',
parent: '0000008',
parents: ['0000008'],
tag: null,
commitType: 'normal',
note: null,
@@ -126,7 +126,7 @@ export const getCommits = () => {
seq: 13,
message: '',
branch: 'develop',
parent: ['0000010', '0000011'],
parents: ['0000010', '0000011'],
tag: null,
commitType: 'normal',
note: null,
@@ -136,7 +136,7 @@ export const getCommits = () => {
seq: 14,
message: '',
branch: 'release',
parent: '0000013',
parents: ['0000013'],
tag: null,
commitType: 'normal',
note: null,
@@ -146,7 +146,7 @@ export const getCommits = () => {
seq: 15,
message: '',
branch: 'master',
parent: '0000007',
parents: ['0000007'],
tag: null,
commitType: 'normal',
note: null,
@@ -156,7 +156,7 @@ export const getCommits = () => {
seq: 16,
message: '',
branch: 'release',
parent: ['0000014', '0000015'],
parents: ['0000014', '0000015'],
tag: 'v1.0',
commitType: 'normal',
note: null,
@@ -166,7 +166,7 @@ export const getCommits = () => {
seq: 17,
message: '',
branch: 'develop',
parent: ['0000013', '0000016'],
parents: ['0000013', '0000016'],
tag: null,
commitType: 'normal',
note: null,