https://git-scm.com
usage: git [--version] [--help] [-C <path>] [-c name=value] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p | --paginate | --no-pager] [--no-replace-objects] [--bare] [--git-dir=< path>] [--work-tree=<path>] [--namespace=<name>] <command> [<args>] These are common Git commands used in various situations: start a working area (see also: git help tutorial) clone Clone a repository into a new directory init Create an empty Git repository or reinitialize an existing one work on the current change (see also: git help everyday) add Add file contents to the index mv Move or rename a file, a directory, or a symlink reset Reset current HEAD to the specified state rm Remove files from the working tree and from the index examine the history and state (see also: git help revisions) bisect Use binary search to find the commit that introduced a bug grep Print lines matching a pattern log Show commit logs show Show various types of objects status Show the working tree status grow, mark and tweak your common history branch List, create, or delete branches checkout Switch branches or restore working tree files commit Record changes to the repository diff Show changes between commits, commit and working tree, etc merge Join two or more development histories together rebase Reapply commits on top of another base tip tag Create, list, delete or verify a tag object signed with GPG collaborate (see also: git help workflows) fetch Download objects and refs from another repository pull Fetch from and integrate with another repository or a local branch push Update remote refs along with associated objects 'git help -a' and 'git help -g' list available subcommands and some concept guides. See 'git help <command>' or 'git help <concept>' to read about a specific subcommand or concept.
git config --global user.name "John Doe" git config --global user.email "John@doe.com"
mkdir class2017_456
cd class2017_456
git init
git clone git@git.fabacademy.org:fabacademy2017/fablabkamplintfort.git
git pull --all
git add --all
git commit -m "short description"
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Page Title My First Heading
My first paragraph.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Konstantin's Page @ FabLab Academy</title>
<link rel="icon" href="./_Resources/favicon.ico">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./_CSS/bootstrap.min.css">
<link rel="stylesheet" href="./_CSS/r360.css">
<link rel="stylesheet" href="./_CSS/custom_01.css">
<link rel="stylesheet" href="./_CSS/ddMenu.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="./_js/bootstrap.min.js"></script>
</head>
<body>
<!-- navigation bar -->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand" >
<a href="http://fabacademy.org" style="color:grey">
<div class="r360">
<img id="spin" src="./_Resources/Fab_Lab_Weblogo.svg" height="30px">
</div>
FAB ACADEMY</a>
<a href="http://archive.fabacademy.org/archives/2017/master/students.html">
<span style="font-style:italic;color:red;">
CLASS 2017
</span>
</a>
</div>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li style="margin-left:-5px"><a href="index.html">Home</a></li>
<li><a href="about.html"><img src="./_Resources/kon67_avatar_lgo.svg" class="img-rounded" style="height:22px; margin-right:2px">about</a></li>
<li><a href="fipro.html">final project</a></li>
<li><a href="contact.html">contact</a></li>
<li><a href="links.html">links</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://fablab.hochschule-rhein-waal.de/"> <img src="./_Resources/Fab_Lab_logo_wht.svg" class="img-rounded" style="height:22px; margin-left:_20px; margin-right:2px">FabLab KaLi</a></li>
</ul>
</div>
</div></nav>
<!--drop down menu-->
<li class="active" style="margin-left:-12px">
<div class="dropdown">tasks
<div class="dropdown-content">
<ul>
<li class="active"><a href="task1.html">Week 1</a></li>
<li><a href="task2.html">Week 2</a></li>
<li><a href="task3.html">Week 3</a></li>
<li><a href="task4.html">Week 4</a></li>
<!-- <li><a href="#">Week 5</a></li>
<li><a href="#">Week 6</a></li>
<li><a href="#">Week 7</a></li>
<li><a href="#">Week 8</a></li>
<li><a href="#">Week 3</a></li>
<li><a href="#">Week 10</a></li>
<li><a href="#">Week 11</a></li>
<li><a href="#">Week 12</a></li>
<li><a href="#">Week 13</a></li>
<li><a href="#">Week 14</a></li>
<li><a href="#">Week 15</a></li>
<li><a href="#">Week 16</a></li>
<li><a href="#">Week 17</a></li>
<li><a href="#">Week 18</a></li>
<li class="divider"></li>-->
<li><a href="fipro.html">Final Project</a></li>
</ul>
</div>
</div>
</li>
<!-- footer section -->
<div>
<footer class="container-fluid text-center">
<p>
<img src="./_Resources/Fab_Lab_logo.png" class="img-rounded" style="height:25px">
</p>
<p style="color:white">Fab Academy 2017<br>FabLab Kamp-Lintfort Germany</p>
</footer>
<div class="container-fluid text-center">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">
<img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" />
</a>
<br />This work is licensed under a <br>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons <br>Attribution-NonCommercial-ShareAlike 4.0 International License</a>.</div>
</div>