# Clone repository
git clone [email protected]:weknowinc/drupal.develop.git
# Copy .env file
cp .env.dist .env
# Add hostname entry in your /etc/hosts file
127.0.0.1 drupal.develop
# Start containers
ahoy up
# Switch develop branch
git checkout master
# Fetch latest changes
git fetch upstream
# Merge changes locally
git merge upstream/master
# Sync forked repo
git push origin/master
# Download new dependencies
ahoy composer install
# Build Drupal site
ahoy drupal build:develop
# Create branch
git checkout -b BRANCH_NAME
# Add file changes
git add -p
# Commit changes
git commit -m MESSAGE_SUBJECT
# Push code to repository
git push origin BRANCH_NAME
ahoy composer install
ahoy composer require drupal/MODULE_NAME
ahoy composer remove drupal/MODULE_NAME
# Using default drupal config system
ahoy drupal config:export --no-interaction
# Using config_split
ahoy drupal config_split:export --no-interaction