Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
courses
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Gitlab will go in to maintenance on Friday 5:30pm since SIU is doing Isilon maintenance and we use isilon shares on the Gitlab
You are on a read-only GitLab instance.
Show more breadcrumbs
R3
school
courses
Commits
1d578c3b
Commit
1d578c3b
authored
8 years ago
by
Laurent Heirendt
Browse files
Options
Downloads
Patches
Plain Diff
Minor changes to structure
parent
af5bd282
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
index.md
+1
-1
1 addition, 1 deletion
index.md
installation.md
+21
-0
21 additions, 0 deletions
installation.md
list.json
+7
-2
7 additions, 2 deletions
list.json
overview.md
+18
-0
18 additions, 0 deletions
overview.md
the_terminal.md
+58
-0
58 additions, 0 deletions
the_terminal.md
with
105 additions
and
3 deletions
index.md
+
1
−
1
View file @
1d578c3b
...
...
@@ -32,7 +32,7 @@ clone, add, commit, (diff, log), push and status
branch, checkout (add commit push on a branch)
Demo that if pushed to a branch, we will have a conflict -> submit a PR
t
to DEVELOP from own branch to avoid that
Demo that if pushed to a branch, we will have a conflict -> submit a PR to DEVELOP from own branch to avoid that
2.
Github
...
...
This diff is collapsed.
Click to expand it.
installation.md
0 → 100644
+
21
−
0
View file @
1d578c3b
## Installation
<img
src=
"img/github_app.png"
class=
"as-is"
height=
"300"
/>
[
mac.github.com
](
http://mac.github.com
)
ou
[
windows.github.com
](
http://windows.github.com
)
## Configuration
```
shell
$
git config
--global
user.name
"Firstname Lastname"
$
git config
--global
user.email
"first.last@uni.lu"
$
git config
-l
```
## Does it work?
```
shell
$
git
--version
# git version 1.8.5
```
This diff is collapsed.
Click to expand it.
list.json
+
7
−
2
View file @
1d578c3b
...
...
@@ -6,12 +6,17 @@
}
},
{
"filename"
:
"
part-2-git-intro
.md"
,
"filename"
:
"
overview
.md"
,
"attr"
:
{
}
},
{
"filename"
:
"part-3-installation.md"
,
"filename"
:
"the_terminal.md"
,
"attr"
:
{
}
},
{
"filename"
:
"installation.md"
,
"attr"
:
{
}
},
...
...
This diff is collapsed.
Click to expand it.
overview.md
0 → 100644
+
18
−
0
View file @
1d578c3b
## Overview
0.
The Terminal
1.
What is
`git`
? Why do I need it? (5 min)
2.
GitHub and GitLab (5min)
*
Practical session (5 min)
-
GitLab interface
-
GitHub interface
3.
The 5 essential commands (10 min)
*
Practical session (15 min)
-
init
-
clone
-
add
4.
Branches (10 min)
*
Practical session (10 min)
5.
Forks (10 min)
*
Practical session (10 min)
6.
Evaluation (10 min)
This diff is collapsed.
Click to expand it.
the_terminal.md
0 → 100644
+
58
−
0
View file @
1d578c3b
## The Linux Terminal
Starting the terminal presents itself with a line where you can enter a command:
```
sh
michael@myComputer>
```
Often written, for covenience, as:
```
sh
$
```
When you open your terminal (git shell) and unless otherwise configured, you are located
in your home directory, denoted as
`~/`
.
## Essential Linux commands
List the contents of a directory
```
sh
$
ls
```
Change the directory to a specific folder
```
sh
$
cd
myDirectory
```
Change the directory 1 level and 2 levels up
```
sh
$
cd
..
$
cd
../..
```
Create a directory
```
sh
$
mkdir
myNewDirectory
```
## What is `git`? Why do I need it?


Designed and implemented in 2005 by
**Linus Torvalds**
`git`
is a version tracking system, essentially for code.
Collaborative platform for code development
## The 5 essential commands
`pull, status, add, commit, push`
note:
Put your speaker notes here.
You can see them pressing 's'.
Fullscreen can be activated by typing 'f'.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment