Skip to content

Instantly share code, notes, and snippets.

@jagroop
Created July 8, 2019 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jagroop/d357a9ab85a9d5e28d5ec53364895d4d to your computer and use it in GitHub Desktop.
Save jagroop/d357a9ab85a9d5e28d5ec53364895d4d to your computer and use it in GitHub Desktop.

Work Flow

Notes

  • Always keep your feature or bug branch synced with remote dev branch.
  • Whenever you start working on a new feature or bug. Please create a separate branch for your work DO NOT work on dev or master branch i.e. git checkout -b feature-name
  • Push only when the work is done , DO NOT PUSH frequently.
  • Please write decent commit messages.

Installation

  1. Clone repository ( Don't forget to replace app-name with Application Name without spaces )
git clone <link-to-repo>.git app-name

cd app-name

git checkout dev

git checkout -b <feature-branch>

composer install

Read Further installation instructions from project Readme file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment