Fertige Präsentation
This commit is contained in:
parent
a0875bdf64
commit
ae2f51bcc1
3 changed files with 91 additions and 36 deletions
|
@ -40,6 +40,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li>Was ist eine Versionsverwaltung?</li>
|
<li>Was ist eine Versionsverwaltung?</li>
|
||||||
<li>Was ist GIT?</li>
|
<li>Was ist GIT?</li>
|
||||||
|
<li>Was ist ein Branch?</li>
|
||||||
<li>Wie installiere ich GIT?</li>
|
<li>Wie installiere ich GIT?</li>
|
||||||
<li>Wie lege ich ein Repository an?</li>
|
<li>Wie lege ich ein Repository an?</li>
|
||||||
<li>Wie füge ich eine Datei hinzu?</li>
|
<li>Wie füge ich eine Datei hinzu?</li>
|
||||||
|
@ -56,24 +57,66 @@
|
||||||
<h1>Was ist GIT?</h1>
|
<h1>Was ist GIT?</h1>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section class="slide">
|
||||||
|
<h1> was ist ein Branch?</h1>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
<h1>Wie installiere ich GIT?</h1>
|
<h1>Wie installiere ich GIT?</h1>
|
||||||
|
<p><strong>Windows</strong></p>
|
||||||
|
<p>http://code.google.com/p/msysgit/downloads/list?q=full+installer+official+git</p>
|
||||||
|
<p><strong>Linux</strong></p>
|
||||||
|
<pre><code>
|
||||||
|
# Debian
|
||||||
|
$ apt-get install git-core
|
||||||
|
# RedHat
|
||||||
|
$ yum install git
|
||||||
|
# gentoo
|
||||||
|
$ emerge git
|
||||||
|
</code></pre>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
<h1>Wie lege ich ein Repository an?</h1>
|
<h1>Wie lege ich ein Repository an?</h1>
|
||||||
|
<pre><code>
|
||||||
|
$ git init
|
||||||
|
</code></pre>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
<h1>Wie füge ich eine Datei hinzu?</h1>
|
<h1>Wie füge ich eine Datei hinzu?</h1>
|
||||||
|
<pre><code>
|
||||||
|
$ git add hausarbeit.tex
|
||||||
|
$ git commit -m "Erster Commit meiner tollen Hausarbeit"
|
||||||
|
</code></pre>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
<h1>Wie lasse ich mir die Unterschiede anzeigen?</h1>
|
<h1>Wie lasse ich mir die Unterschiede anzeigen?</h1>
|
||||||
|
<pre><code>
|
||||||
|
$ git diff hausarbeit.tex
|
||||||
|
</code></pre>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
<h1>Wie komme ich an eine alte Version ran?</h1>
|
<h1>Wie komme ich an eine alte Version ran?</h1>
|
||||||
|
<pre><code>
|
||||||
|
$ git log
|
||||||
|
$ git checkout <versionshash>
|
||||||
|
$ git checkout master
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="slide">
|
||||||
|
<h1>Noch fragen?</h1>
|
||||||
|
<h2>Was nicht erwähnt wurde</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Noch mehr branching</li>
|
||||||
|
<li>Entfernte Repositories</li>
|
||||||
|
<li>rebase</li>
|
||||||
|
<li>stash</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
@ -110,13 +153,13 @@
|
||||||
<script src="core/deck.core.js"></script>
|
<script src="core/deck.core.js"></script>
|
||||||
|
|
||||||
<!-- Extension JS files. Add or remove as needed. -->
|
<!-- Extension JS files. Add or remove as needed. -->
|
||||||
<script src="../core/deck.core.js"></script>
|
<script src="core/deck.core.js"></script>
|
||||||
<script src="../extensions/hash/deck.hash.js"></script>
|
<script src="extensions/hash/deck.hash.js"></script>
|
||||||
<script src="../extensions/menu/deck.menu.js"></script>
|
<script src="extensions/menu/deck.menu.js"></script>
|
||||||
<script src="../extensions/goto/deck.goto.js"></script>
|
<script src="extensions/goto/deck.goto.js"></script>
|
||||||
<script src="../extensions/status/deck.status.js"></script>
|
<script src="extensions/status/deck.status.js"></script>
|
||||||
<script src="../extensions/navigation/deck.navigation.js"></script>
|
<script src="extensions/navigation/deck.navigation.js"></script>
|
||||||
<script src="../extensions/scale/deck.scale.js"></script>
|
<script src="extensions/scale/deck.scale.js"></script>
|
||||||
|
|
||||||
<!-- Initialize the deck. You can put this in an external file if desired. -->
|
<!-- Initialize the deck. You can put this in an external file if desired. -->
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
min-height: 32px;
|
min-height: 32px;
|
||||||
background: #333;
|
background: #333;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: fixed;
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
|
@ -18,14 +18,16 @@
|
||||||
|
|
||||||
.slide {
|
.slide {
|
||||||
background:#fff;
|
background:#fff;
|
||||||
top: 42px !important;
|
top: 91px !important;
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
color:#000;
|
color:#000;
|
||||||
position: static;
|
position: static;
|
||||||
top: inherit;
|
top: inherit;
|
||||||
padding-top: 126px !important;
|
padding-top: 2em;
|
||||||
text-align: right;
|
text-align: left;
|
||||||
|
font-size: 2.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
|
@ -37,6 +39,10 @@
|
||||||
color:#888;
|
color:#888;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
font-size: 140%;
|
||||||
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
border-color:#ccc;
|
border-color:#ccc;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
min-height: 32px;
|
min-height: 32px;
|
||||||
background: #333;
|
background: #333;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: fixed;
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
|
@ -19,34 +19,40 @@
|
||||||
/* line 19, ../sass/screen.scss */
|
/* line 19, ../sass/screen.scss */
|
||||||
.deck-container .slide {
|
.deck-container .slide {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
top: 42px !important;
|
top: 91px !important;
|
||||||
|
position: absolute;
|
||||||
}
|
}
|
||||||
/* line 23, ../sass/screen.scss */
|
/* line 24, ../sass/screen.scss */
|
||||||
.deck-container .slide h1 {
|
.deck-container .slide h1 {
|
||||||
color: #000;
|
color: #000;
|
||||||
position: static;
|
position: static;
|
||||||
top: inherit;
|
top: inherit;
|
||||||
padding-top: 126px !important;
|
padding-top: 2em;
|
||||||
text-align: right;
|
text-align: left;
|
||||||
|
font-size: 2.5em;
|
||||||
}
|
}
|
||||||
/* line 31, ../sass/screen.scss */
|
/* line 33, ../sass/screen.scss */
|
||||||
.deck-container .slide h2 {
|
.deck-container .slide h2 {
|
||||||
color: #c00;
|
color: #c00;
|
||||||
border-bottom-color: #ccc;
|
border-bottom-color: #ccc;
|
||||||
}
|
}
|
||||||
/* line 36, ../sass/screen.scss */
|
/* line 38, ../sass/screen.scss */
|
||||||
.deck-container .slide h3 {
|
.deck-container .slide h3 {
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
/* line 40, ../sass/screen.scss */
|
/* line 42, ../sass/screen.scss */
|
||||||
|
.deck-container .slide ul {
|
||||||
|
font-size: 140%;
|
||||||
|
}
|
||||||
|
/* line 46, ../sass/screen.scss */
|
||||||
.deck-container .slide pre {
|
.deck-container .slide pre {
|
||||||
border-color: #ccc;
|
border-color: #ccc;
|
||||||
}
|
}
|
||||||
/* line 44, ../sass/screen.scss */
|
/* line 50, ../sass/screen.scss */
|
||||||
.deck-container .slide code {
|
.deck-container .slide code {
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
/* line 48, ../sass/screen.scss */
|
/* line 54, ../sass/screen.scss */
|
||||||
.deck-container .slide blockquote {
|
.deck-container .slide blockquote {
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
@ -54,71 +60,71 @@
|
||||||
color: #000;
|
color: #000;
|
||||||
border-left: 5px solid #ccc;
|
border-left: 5px solid #ccc;
|
||||||
}
|
}
|
||||||
/* line 55, ../sass/screen.scss */
|
/* line 61, ../sass/screen.scss */
|
||||||
.deck-container .slide blockquote p {
|
.deck-container .slide blockquote p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
/* line 59, ../sass/screen.scss */
|
/* line 65, ../sass/screen.scss */
|
||||||
.deck-container .slide blockquote cite {
|
.deck-container .slide blockquote cite {
|
||||||
font-size: .5em;
|
font-size: .5em;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
/* line 67, ../sass/screen.scss */
|
/* line 73, ../sass/screen.scss */
|
||||||
.deck-container .slide ::-moz-selection {
|
.deck-container .slide ::-moz-selection {
|
||||||
background: #c00;
|
background: #c00;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
/* line 68, ../sass/screen.scss */
|
/* line 74, ../sass/screen.scss */
|
||||||
.deck-container .slide ::selection {
|
.deck-container .slide ::selection {
|
||||||
background: #c00;
|
background: #c00;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
/* line 71, ../sass/screen.scss */
|
/* line 77, ../sass/screen.scss */
|
||||||
.deck-container .slide a, .deck-container .slide a:hover, .deck-container .slide a:focus, .deck-container .slide a:active, .deck-container .slide a:visited {
|
.deck-container .slide a, .deck-container .slide a:hover, .deck-container .slide a:focus, .deck-container .slide a:active, .deck-container .slide a:visited {
|
||||||
color: #c00;
|
color: #c00;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/* line 76, ../sass/screen.scss */
|
/* line 82, ../sass/screen.scss */
|
||||||
.deck-container .slide a:hover, .deck-container .slide a:focus {
|
.deck-container .slide a:hover, .deck-container .slide a:focus {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
/* line 83, ../sass/screen.scss */
|
/* line 89, ../sass/screen.scss */
|
||||||
.deck-container > .slide .deck-before, .deck-container > .slide .deck-previous {
|
.deck-container > .slide .deck-before, .deck-container > .slide .deck-previous {
|
||||||
opacity: 0.4;
|
opacity: 0.4;
|
||||||
}
|
}
|
||||||
/* line 87, ../sass/screen.scss */
|
/* line 93, ../sass/screen.scss */
|
||||||
.deck-container > .slide .deck-before:not(.deck-child-current) .deck-before, .deck-container > .slide .deck-before:not(.deck-child-current) .deck-previous, .deck-container > .slide .deck-previous:not(.deck-child-current) .deck-before, .deck-container > .slide .deck-previous:not(.deck-child-current) .deck-previous {
|
.deck-container > .slide .deck-before:not(.deck-child-current) .deck-before, .deck-container > .slide .deck-before:not(.deck-child-current) .deck-previous, .deck-container > .slide .deck-previous:not(.deck-child-current) .deck-before, .deck-container > .slide .deck-previous:not(.deck-child-current) .deck-previous {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
/* line 93, ../sass/screen.scss */
|
/* line 99, ../sass/screen.scss */
|
||||||
.deck-container > .slide .deck-child-current {
|
.deck-container > .slide .deck-child-current {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
/* line 98, ../sass/screen.scss */
|
/* line 104, ../sass/screen.scss */
|
||||||
.deck-container .deck-prev-link, .deck-container .deck-next-link {
|
.deck-container .deck-prev-link, .deck-container .deck-next-link {
|
||||||
background: #ccc;
|
background: #ccc;
|
||||||
font-family: serif;
|
font-family: serif;
|
||||||
}
|
}
|
||||||
/* line 102, ../sass/screen.scss */
|
/* line 108, ../sass/screen.scss */
|
||||||
.deck-container .deck-prev-link, .deck-container .deck-prev-link:hover, .deck-container .deck-prev-link:focus, .deck-container .deck-prev-link:active, .deck-container .deck-prev-link:visited, .deck-container .deck-next-link, .deck-container .deck-next-link:hover, .deck-container .deck-next-link:focus, .deck-container .deck-next-link:active, .deck-container .deck-next-link:visited {
|
.deck-container .deck-prev-link, .deck-container .deck-prev-link:hover, .deck-container .deck-prev-link:focus, .deck-container .deck-prev-link:active, .deck-container .deck-prev-link:visited, .deck-container .deck-next-link, .deck-container .deck-next-link:hover, .deck-container .deck-next-link:focus, .deck-container .deck-next-link:active, .deck-container .deck-next-link:visited {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
/* line 106, ../sass/screen.scss */
|
/* line 112, ../sass/screen.scss */
|
||||||
.deck-container .deck-prev-link:hover, .deck-container .deck-prev-link:focus, .deck-container .deck-next-link:hover, .deck-container .deck-next-link:focus {
|
.deck-container .deck-prev-link:hover, .deck-container .deck-prev-link:focus, .deck-container .deck-next-link:hover, .deck-container .deck-next-link:focus {
|
||||||
background: #c00;
|
background: #c00;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/* line 112, ../sass/screen.scss */
|
/* line 118, ../sass/screen.scss */
|
||||||
.deck-container .deck-status {
|
.deck-container .deck-status {
|
||||||
font-size: 0.6666em;
|
font-size: 0.6666em;
|
||||||
}
|
}
|
||||||
/* line 117, ../sass/screen.scss */
|
/* line 123, ../sass/screen.scss */
|
||||||
.deck-container.deck-menu .slide {
|
.deck-container.deck-menu .slide {
|
||||||
background: #eee;
|
background: #eee;
|
||||||
}
|
}
|
||||||
/* line 121, ../sass/screen.scss */
|
/* line 127, ../sass/screen.scss */
|
||||||
.deck-container.deck-menu .deck-current, .no-touch .deck-container.deck-menu .slide:hover {
|
.deck-container.deck-menu .deck-current, .no-touch .deck-container.deck-menu .slide:hover {
|
||||||
background: #ddf;
|
background: #ddf;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue