Skip to content
Snippets Groups Projects
Commit 55aacb33 authored by manselme's avatar manselme
Browse files

Update download_repo.md

parent a5130224
No related branches found
No related tags found
No related merge requests found
Pipeline #141137 passed
...@@ -26,3 +26,21 @@ and then clone the repository. This will download all of the files necessary for ...@@ -26,3 +26,21 @@ and then clone the repository. This will download all of the files necessary for
```bash ```bash
git clone https://gitlab.pasteur.fr/iah-public/20241008_remote_python_bioimage_analysis_course_day2 git clone https://gitlab.pasteur.fr/iah-public/20241008_remote_python_bioimage_analysis_course_day2
``` ```
### More about Git
Git is a version control system. A version control system (VCS) manages and tracks changes to files over time, allowing multiple users to collaborate efficiently on projects. It records a history of changes, supports branching for parallel work, and helps merge or resolve conflicts. It ensures a consistent project state and enables reverting to previous versions when needed.
We could summarize the key principles of Git as follows:
- Tracking changes: Git records a history of changes (commits) to a project, making it easy to review, undo, or revert to previous versions.
- Branching and merging: Developers can create branches to work on new features or fixes independently, then merge these changes back into the main project.
- Collaboration: Multiple users can work concurrently, and Git helps resolve conflicts when changes overlap.
- Distributed: Each user has a complete copy of the project history, enabling offline work and decentralization.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment