Skip to content
GitLab
Explore
Sign in
Changes
Page history
Update Get good at git
authored
Jun 26, 2024
by
Grégoire Kubler
Hide whitespace changes
Inline
Side-by-side
Get-good-at-git.md
View page @
276f1340
Git is a versionning tool allowing multiple programmers to work simultaneously on the same codebase.
Git is a versionning tool allowing multiple programmers to work simultaneously on the same codebase.
[[
__TOC__
]]
# commands
# commands
## add
## add
To prepare a [[
#c
ommit]] : each added file will be in your next [[#commit]]
To prepare a [[
Get good at git|Get-good-at-git#C
ommit]] : each added file will be in your next [[#commit]]
```
bash
```
bash
git add <file/folder>
git add <file/folder>
```
```
...
...