From 66fe6fdb1c3cb867ddc1998da61e09d8f18b2bf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20L=C3=A1szl=C3=B3?= <rlacko99@gmail.com> Date: Wed, 7 Oct 2020 13:46:55 +0200 Subject: [PATCH] basic structure --- docs/README.md | 7 +++-- docs/_sidebar.md | 23 ++++++++++++++++ docs/index.html | 46 +++++++++++++++++++------------ docs/intro/1_introduction.md | 3 ++ docs/intro/2_versioning.md | 4 +++ docs/intro/3_history.md | 3 ++ docs/remote/1_basics.md | 1 + docs/remote/2_github.md | 1 + docs/remote/3_issue_merge_fork.md | 1 + docs/workshop/1_installation.md | 1 + docs/workshop/2_basics.md | 1 + docs/workshop/3_branch.md | 1 + 12 files changed, 72 insertions(+), 20 deletions(-) create mode 100644 docs/_sidebar.md create mode 100644 docs/intro/1_introduction.md create mode 100644 docs/intro/2_versioning.md create mode 100644 docs/intro/3_history.md create mode 100644 docs/remote/1_basics.md create mode 100644 docs/remote/2_github.md create mode 100644 docs/remote/3_issue_merge_fork.md create mode 100644 docs/workshop/1_installation.md create mode 100644 docs/workshop/2_basics.md create mode 100644 docs/workshop/3_branch.md diff --git a/docs/README.md b/docs/README.md index e5322b2..cd6e180 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,3 +1,6 @@ -# Headline +# Tartalom -> An awesome project. +- BevezetĹ + - [BemutatkozĂĄs](intro/1_introduction.md) + - [VerziĂłkezelĂŠs](intro/2_versioning.md) + - [Git tĂśrtĂŠnete](intro/3_history.md) diff --git a/docs/_sidebar.md b/docs/_sidebar.md new file mode 100644 index 0000000..307384d --- /dev/null +++ b/docs/_sidebar.md @@ -0,0 +1,23 @@ +- [FĹoldal]() + +- BevezetĹ + + - [BemutatkozĂĄs](intro/1_introduction.md) + - [VerziĂłkezelĂŠs](intro/2_versioning.md) + - [Git tĂśrtĂŠnete](intro/3_history.md) + +- Git hasznĂĄlata + + - [TelepĂtĂŠs ĂŠs konfigurĂĄciĂł](workshop/1_installation.md) + - [Alapok](workshop/2_basics.md) + - [ElĂĄgazĂĄs, "BranchelĂŠs"](workshop/3_branch.md) + +- TĂĄvoli Repository + + - [Alapok, SSH kulcs](remote/1_basics.md) + - [Github](remote/2_github.md) + - [Issue, merge request, Fork](remote/3_issue_merge_fork.md) + +- ForrĂĄs + + - [Pro Git kĂśnyv](https://git-scm.com/book/en/v2/) diff --git a/docs/index.html b/docs/index.html index 3523b79..a6616b4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,21 +1,31 @@ <!DOCTYPE html> <html lang="en"> -<head> - <meta charset="UTF-8"> - <title>Document</title> - <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> - <meta name="description" content="Description"> - <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> - <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css"> -</head> -<body> - <div id="app"></div> - <script> - window.$docsify = { - name: '', - repo: '' - } - </script> - <script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script> -</body> + <head> + <meta charset="UTF-8" /> + <title>Document</title> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> + <meta name="description" content="Description" /> + <meta + name="viewport" + content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" + /> + <link + rel="stylesheet" + href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css" + /> + </head> + <body> + <div id="app"></div> + <script> + window.$docsify = { + loadSidebar: true, + alias: { + "/.*/_sidebar.md": "/_sidebar.md", + }, + name: "", + repo: "", + }; + </script> + <script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script> + </body> </html> diff --git a/docs/intro/1_introduction.md b/docs/intro/1_introduction.md new file mode 100644 index 0000000..9e0b01e --- /dev/null +++ b/docs/intro/1_introduction.md @@ -0,0 +1,3 @@ +# BemutatkozĂĄs + +Rafael LĂĄszlĂł diff --git a/docs/intro/2_versioning.md b/docs/intro/2_versioning.md new file mode 100644 index 0000000..4c026fa --- /dev/null +++ b/docs/intro/2_versioning.md @@ -0,0 +1,4 @@ +# VerziĂłkezelĂŠs + +FĂĄjlkezelĂŠs, mentĂŠsek, +`projektem_2019.12.01_copy_copy(3).docx` diff --git a/docs/intro/3_history.md b/docs/intro/3_history.md new file mode 100644 index 0000000..f8e2a4b --- /dev/null +++ b/docs/intro/3_history.md @@ -0,0 +1,3 @@ +# Git tĂśrtĂŠnete + +Git, mint verziĂłkezelĹ diff --git a/docs/remote/1_basics.md b/docs/remote/1_basics.md new file mode 100644 index 0000000..0cf729a --- /dev/null +++ b/docs/remote/1_basics.md @@ -0,0 +1 @@ +# Alapok, SSH kulcs diff --git a/docs/remote/2_github.md b/docs/remote/2_github.md new file mode 100644 index 0000000..15657f3 --- /dev/null +++ b/docs/remote/2_github.md @@ -0,0 +1 @@ +# Github diff --git a/docs/remote/3_issue_merge_fork.md b/docs/remote/3_issue_merge_fork.md new file mode 100644 index 0000000..7bcf08d --- /dev/null +++ b/docs/remote/3_issue_merge_fork.md @@ -0,0 +1 @@ +# Issue, merge request, Fork diff --git a/docs/workshop/1_installation.md b/docs/workshop/1_installation.md new file mode 100644 index 0000000..1d4dbe3 --- /dev/null +++ b/docs/workshop/1_installation.md @@ -0,0 +1 @@ +# TelepĂtĂŠs ĂŠs konfigurĂĄciĂł diff --git a/docs/workshop/2_basics.md b/docs/workshop/2_basics.md new file mode 100644 index 0000000..ae76131 --- /dev/null +++ b/docs/workshop/2_basics.md @@ -0,0 +1 @@ +# Alapok diff --git a/docs/workshop/3_branch.md b/docs/workshop/3_branch.md new file mode 100644 index 0000000..86ebe97 --- /dev/null +++ b/docs/workshop/3_branch.md @@ -0,0 +1 @@ +# ElĂĄgazĂĄs, "BranchelĂŠs" -- GitLab