git ass2
git ass2
INITIALIZE THE MAKE BRANCHES PUSH ON THE COLLABORATION PULL CHANGES TRACK IMAGES
PROJECT REMOTE REPO AND VIDEOS
1- INITIALIZE THE
PROJECT
1. Feature Branching
2. Release Branching
3. GitFlow
Description: Use separate branches for each release. Description: Use separate branches for features, releases,
and hotfixes.
Best for: Projects with set release dates.
Best for: Large, complex projects.
Steps: Steps:
1.Create a release branch: git branch release/v1.0 1.Create feature branches from develop.
2.Merge feature branches into the release branch. 2.Merge feature branches into develop.
3.Tag the release branch for deployment. 3.Create release branches from develop.
4.Merge release branches into master.
2- MAKE BRANCHES
Example
Tracking Large
Files in GitHub:
Git LFS | by
Lucas Leiberman
| Medium
6- TRACK IMAGES AND VIDEOS
Git LFS
(Large File Storage) is an extension that helps manage large
binary files, such as images, by storing them outside the main Git
repository. This approach keeps your Git repository lightweight
and improves performance.