User Tools

Site Tools


git

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
git [2023/11/30 09:11] – [Deleting branch] skipidargit [2025/08/24 14:25] (current) – [Gitflow Workflow] skipidar
Line 35: Line 35:
  
 {{https://www.atlassian.com/git/images/tutorials/collaborating/comparing-workflows/gitflow-workflow/05.svg?20}} {{https://www.atlassian.com/git/images/tutorials/collaborating/comparing-workflows/gitflow-workflow/05.svg?20}}
 +
 +
 +<code>
 +Default Branch Names:
 +
 +Production Branch (master or main): This branch should always reflect the production-ready state of your project.
 +
 +Development Branch (develop): This is the main branch for all new development. Feature branches are created from develop and merged back into it.
 +
 +
 +Feature Branch Prefix (feature/): For new features.
 +
 +Release Branch Prefix (release/): For preparing a new production release.
 +
 +Hotfix Branch Prefix (hotfix/): For quick fixes to the production branch.
 +
 +Support Branch Prefix (support/): For long-running support branches (less common but available).
 +
 +Version Tag Prefix (v): Used for tagging releases.
 +</code>
 +
 ==== FallPits ==== ==== FallPits ====
   * Use the http / https repository for cloning.   * Use the http / https repository for cloning.
Line 355: Line 376:
  
  
-==== Remove unreachable blobs  =====+==== Remove unreachable blobs, reduce size of repo  =====
  
 ''objects/pack'': This folder contains packed object files. Git occasionally compresses objects into packfiles to save space and improve performance. ''objects/pack'': This folder contains packed object files. Git occasionally compresses objects into packfiles to save space and improve performance.
git.1701335499.txt.gz · Last modified: by skipidar