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
Merge requests
!129
[release] Regular merge of develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[release] Regular merge of develop
develop
into
master
Overview
0
Commits
34
Pipelines
1
Changes
4
Merged
cylon-x
requested to merge
develop
into
master
2 years ago
Overview
0
Commits
34
Pipelines
1
Changes
4
Expand
0
0
Merge request reports
Viewing commit
96a85e81
Prev
Next
Show latest version
4 files
+
35
−
58
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Verified
96a85e81
changes to part 1 (1)
· 96a85e81
Laurent Heirendt
authored
2 years ago
2022/2022-05-31_git-trilogy-part-1/slides/best_practices.md
+
7
−
33
Options
#
Wrap-up
#
Summary
*
Git makes things separated but interlinked!
*
separation of changes into commits - compare with standard "versioning" of dropbox/onedrive/owncloud or labeling v1.2 manually
*
separation of work into branches - compare with standard work in parallel - making copy of file and renaming, then "putting it together"
*
separation of work into forks - compare with "I will make my own copy of the whole folder"
GitLab creates a convenient and efficient working environment
-
merge requests
-
issues
-
assignments
-
much much more...
<div
class=
"fragment"
>
*
GitLab creates a convenient working environment
*
merge requests
*
issues
*
assignements
*
and much much more...
<div
style=
"position:absolute;left:55%;top:55%"
>
<img
src=
"slides/img/fox.png"
>
https://pixabay.com/images/id-5236832/
</div>
</div>
# Wrap-up
## Glossary
*
git
*
repository
*
fork
*
commit
*
branch
*
merge
*
merge/pull request
## Best practices
# Best practices
*
Work on your
<font
color=
"red"
>
own
</font>
branch (in your own fork), and
**not**
on
`master`
and
**not**
on
`develop`
*
Do
**not commit**
to
`master`
/
`develop`
, but
**submit a merge request (MR)**
Loading