GitGraph.js에 GiitHub Flow의 제출도를 써 보십시오
11937 단어 GitJavaScriptGithub-flow
GiitHub Flow란?
GiitHub Flow에 대해서는 다음 기사를 참조하십시오.
다운로드
$ git clone [email protected]:nicoespeon/gitgraph.js.git
견본
GiitHub Flow 샘플
다운로드한gitgraph.css와gitgraph.js를 임의의 위치에 놓습니다.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GitGraph.js</title>
<link rel="stylesheet" type="text/css" href="./gitgraph.css" />
</head>
<body>
<canvas id="gitGraph"></canvas>
<script src="./gitgraph.js"></script>
<script language="JavaScript">
var gitgraph = new GitGraph({
template: "metro",
reverseArrow: false,
orientation: "vertical",
mode: "extended"
});
gitgraph.template.colors = ['#CCC', '#F00', '#0F0', '#00F']
var master = gitgraph.branch('master');
gitgraph.commit({
message: "tbpgr commit1",
author: "tbpgr",
});
gitgraph.commit({
message: "tbpgr commit2",
author: "tbpgr",
});
var topic_a = gitgraph.branch('topic A');
gitgraph.commit({
message: "tanaka commit1",
author: "tanaka",
});
gitgraph.commit({
message: "tanaka commit2",
author: "tanaka",
});
master.checkout();
var topic_b = gitgraph.branch('topic B');
gitgraph.commit({
message: "suzuki commit1",
author: "suzuki",
});
gitgraph.commit({
message: "suzuki commit2",
author: "suzuki",
});
topic_a.checkout();
gitgraph.commit({
message: "tanaka commit3",
author: "tanaka",
});
gitgraph.commit({
message: "tanaka commit4",
author: "tanaka",
});
topic_b.checkout();
topic_b.merge(master, { message: "merge topic b", tag: "v1.0.0", author: "tbpgr" });
topic_a.merge(master, { message: "maerge topic a", tag: "v1.0.1", author: "tbpgr" });
var topic_c = gitgraph.branch('topic C');
gitgraph.commit({
message: "kudo commit1",
author: "kudo",
});
topic_c.merge(master, { message: "merge topic c", tag: "v1.0.2", author: "tbpgr" });
</script>
</body>
</html>
외부 자료
Reference
이 문제에 관하여(GitGraph.js에 GiitHub Flow의 제출도를 써 보십시오), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tbpgr/items/4501c7125c93dfde938f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)