From 2cae76ba78c5b7ab4727ca980319987703b595a0 Mon Sep 17 00:00:00 2001 From: Florian Moser Date: Sun, 12 Jan 2020 12:35:05 +0100 Subject: [PATCH] add second part of git course --- git_gitlab_course/boilerplate-single.html | 79 +++++++++++++++++++ git_gitlab_course/images/github_changes.jpg | 3 + git_gitlab_course/images/github_history.jpg | 3 + .../images/github_push_pending.jpg | 3 + .../images/gitlab_create_new_project.jpg | 3 + .../images/gitlab_create_new_project_2.jpg | 3 + .../images/gitlab_first_push.jpg | 3 + .../images/gitlab_local_setup.jpg | 3 + .../images/gitlab_project_created.jpg | 3 + git_gitlab_course/outline.txt | 1 + git_gitlab_course/template.html | 3 +- 11 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 git_gitlab_course/images/github_changes.jpg create mode 100644 git_gitlab_course/images/github_history.jpg create mode 100644 git_gitlab_course/images/github_push_pending.jpg create mode 100644 git_gitlab_course/images/gitlab_create_new_project.jpg create mode 100644 git_gitlab_course/images/gitlab_create_new_project_2.jpg create mode 100644 git_gitlab_course/images/gitlab_first_push.jpg create mode 100644 git_gitlab_course/images/gitlab_local_setup.jpg create mode 100644 git_gitlab_course/images/gitlab_project_created.jpg diff --git a/git_gitlab_course/boilerplate-single.html b/git_gitlab_course/boilerplate-single.html index 81fb084..811082f 100644 --- a/git_gitlab_course/boilerplate-single.html +++ b/git_gitlab_course/boilerplate-single.html @@ -36,6 +36,85 @@ class: center, middle # Introduction + +--- + +# login to gitlab + +- create an account if you have none + +--- + +# create a gitlab project + +[images/gitlab_create_new_project.jpg] +[images/gitlab_create_new_project2.jpg] + +--- + +# finish setup gitlab + +[images/gitlab_project_created.jpg] + +- create a password in the settings +- use an SSH key (optional) + +--- + +# finish local setup + +[images/gitlab_local_setup.jpg] + +--- + +# add Readme & License + +[images/gitlab_first_push.jpg] + +--- + +# What is a readme + +- Explains your project +- For your future self and others + +--- + +# What is a license + +- everything you write has Copyright +- Copyright gives you exclusive rights (so no one else may use it) +- use a license to soften up this +- use MIT to allow usage without restrictions +- use GPL to allow usage if freedom granted to users + +--- + +# install github desktop + +- download from https://desktop.github.com/ +- open your repository folder + +--- + +# commit changes + +[images/github_changes.jpg] + +--- + +# push changes + +[images/github_push_pending.jpg] + +--- + +# view history + +[images/github_history.jpg] + +--- +