Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Git training
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fanch
Git training
Commits
5ef92576
Commit
5ef92576
authored
4 years ago
by
Fanch
Browse files
Options
Downloads
Patches
Plain Diff
add first version
parents
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+154
-0
154 additions, 0 deletions
README.md
with
154 additions
and
0 deletions
README.md
0 → 100644
+
154
−
0
View file @
5ef92576
## 1. What and Why Git
#### Exercise:
-
say what you think git is and where did you see/use it
#### Concept:
-
version control
-
share with team
## 2. Create repository
#### Exercise:
-
Create on gitlab/github
-
Create in a folder on your computer
#### Concept:
-
Every git repository is independant
#### Command:
-
mkdir my_project
-
git init
## 3. Create file in ui
#### Exercice:
-
create a file called first_file.txt in the ui
-
add content in this file, like "hello world"
#### Concept
-
commit
-
history
## 4. Link repository
#### Exercise:
-
add a remote in you git folder on your computer
#### Concept:
-
get content and modification
#### Command
-
git remote
-
git pull
## 5. Create file on your computer
#### Exercice:
-
create a file called second_file.txt in my_project folder
-
add content in this file, like "I love linux"
#### Concept:
-
local modification
-
commit message
#### Command:
-
git add
-
git status
-
git commit
## 6. Report modification on Gitlab/Github
#### Exercise:
-
Push your local modification on remote
#### Concept
-
compare history
#### Command:
-
git push
-
git status
-
git log
## 7. Pause 5 minutes
## 8. Create Branch
#### Exercise:
-
create a local branch my_first_branch
-
Modify a file
-
Push the branch on github/gitlab
#### Concept:
-
branch tree
-
best practice (master/main as ref, branch for bugfix/feature)
#### Command:
-
git checkout
-
git commit
-
git push
## 9. Create Merge Request
#### Exercise:
-
in gitlab/github create a merge request for my_first_branch
-
wait for comment on other person merge request
-
get local modif after merge
#### Concept:
-
code review
-
merge
#### Command:
-
git fetch
-
git merge
## 10. Get existing repository
#### Exercise:
-
Fork repository in gitlab/github
-
Get a local copy
#### Concept:
-
fork
#### Command:
-
git clone
-
git remote
## 11. Propose change
#### Exercise:
-
Create a Local Branch
-
Add a file your_firstname.txt with content like "I love git"
-
Push on your forked repository
-
Create a Merge Request
#### Concept:
-
share work
#### Comand:
-
git checkout
-
git add
-
git commit
-
git push
## 12. Update your fork
#### Exercise:
-
Update your forked repositiory
#### Concept:
-
keep master/main clean
#### Command:
-
git pull
-
git push
## 13. Pause 5 minutes
## 14. Bonus if enought time
## Concept:
-
work branch
-
rebase/reset
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