Skip to content

Instantly share code, notes, and snippets.

View aahmed9to6's full-sized avatar

Abdullah Ahmed aahmed9to6

View GitHub Profile
@aahmed9to6
aahmed9to6 / git-workflow.md
Created August 25, 2024 18:31
Git Workflow

Branching Strategy

  • master/main: Represents the latest production-ready code.
  • develop: Contains all ongoing work.
  • feature/{0-9}-(snake_case): Use for individual features. Delete these branches once the feature is released.
  • hotfix/{0-9}-(snake_case): Use for urgent fixes. Delete these branches once the hotfix is released.

Feature Development Workflow

  1. Branching: Start a feature branch from master/main. If the feature depends on other work, create the branch from the dependent feature.
@aahmed9to6
aahmed9to6 / symfony-laravel-on-shared-hosting.md
Last active February 24, 2025 16:26
Symfony/Laravel on shared hosting

mv public_html <some_backup_name>

mkdir public

ln -s public/ public_html

First parameter is directory path, second is symlink name

ls -la