mermaid/cypress/platform/gitgraph2.html

142 lines
3.6 KiB
HTML
Raw Normal View History

2022-03-24 20:25:22 +01:00
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
2022-03-24 20:25:22 +01:00
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap"
2022-03-24 20:25:22 +01:00
rel="stylesheet"
/>
<style>
body {
/* background: rgb(221, 208, 208); */
/* background:#111; */
2022-03-24 20:25:22 +01:00
/* background:#333; */
font-family: 'Arial';
}
2022-03-24 20:25:22 +01:00
/* h1 { color: white;} */
.mermaid2 {
display: none;
}
.customCss > rect,
.customCss {
fill: #ff0000 !important;
stroke: #ffff00 !important;
stroke-width: 4px !important;
}
2022-03-24 20:25:22 +01:00
</style>
</head>
<body>
<h1>info below</h1>
<pre class="mermaid2" style="width: 100%; height: 20%">
2022-03-24 20:25:22 +01:00
gitGraph:
commit "Ashish"
branch newbranch
checkout newbranch
commit id:"1111"
commit tag:"test"
checkout main
commit type: HIGHLIGHT
commit
merge newbranch
commit
branch b2
commit
</pre>
<pre class="mermaid" style="width: 100%; height: 20%">
2022-04-07 20:13:15 +02:00
%%{init: { "gitGraph": { "showBranches": true, "mainBranchName": "APA" }}}%%
gitGraph
2022-03-24 20:25:22 +01:00
commit
branch hotfix
checkout hotfix
commit
branch develop
checkout develop
commit id:"An id" tag:"A tag"
2022-03-24 20:25:22 +01:00
branch featureB
checkout featureB
commit type:HIGHLIGHT
2022-04-07 20:13:15 +02:00
checkout APA
2022-03-24 20:25:22 +01:00
checkout hotfix
commit type:NORMAL
checkout develop
commit type:REVERSE
checkout featureB
commit
2022-04-07 20:13:15 +02:00
checkout APA
2022-03-24 20:25:22 +01:00
merge hotfix
checkout featureB
commit
checkout develop
branch featureA
commit
checkout develop
merge hotfix
checkout featureA
commit
checkout featureB
commit
checkout develop
merge featureA
branch release
checkout release
commit
2022-04-07 20:13:15 +02:00
checkout APA
2022-03-24 20:25:22 +01:00
commit
checkout release
2022-04-07 20:13:15 +02:00
merge APA
2022-03-24 20:25:22 +01:00
checkout develop
merge release
</pre>
<pre class="mermaid2" style="width: 100%; height: 20%">
2022-03-24 20:25:22 +01:00
gitGraph:
commit
commit
branch newbranch
commit
merge main
</pre>
2023-02-19 09:33:11 +01:00
<script type="module">
import mermaid from './mermaid.esm.mjs';
2022-03-24 20:25:22 +01:00
mermaid.parseError = function (err, hash) {
// console.error('Mermaid error: ', err);
};
mermaid.initialize({
theme: 'default',
2022-03-24 20:25:22 +01:00
themeVariables: {
// primaryColor: '#9400D3',
// darkMode: false,
2022-03-24 20:25:22 +01:00
// background: '#222',
// textColor: 'white',
// primaryTextColor: '#f4f4f4',
// nodeBkg: '#ff0000',
// mainBkg: '#0000ff',
// tertiaryColor: '#ffffcc',
},
// theme: 'forest',
// theme: 'neutral',
// theme: 'dark',
// arrowMarkerAbsolute: true,
// themeCSS: '.edgePath .path {stroke: red;} .arrowheadPath {fill: red;}',
logLevel: 1,
flowchart: { curve: 'linear', htmlLabels: true },
// gitGraph: { showCommitLabel: false },
2022-03-24 20:25:22 +01:00
// gantt: { axisFormat: '%m/%d/%Y' },
sequence: { actorMargin: 50, showSequenceNumbers: true },
// sequenceDiagram: { actorMargin: 300 } // deprecated
// fontFamily: '"arial", sans-serif',
// themeVariables: {
// fontFamily: '"arial", sans-serif',
// },
curve: 'linear',
securityLevel: 'loose',
});
function callback() {
alert('It worked');
}
2022-03-24 20:25:22 +01:00
</script>
</body>
</html>