Drupal Contribution
Action | Command |
---|---|
NEW MODULE |
|
CONTRIBUTE CUSTOM MODULE |
|
MODULE REVISIT (ADD NEW FEATURES) |
|
RELEASE MODULE |
|
NEW ISSUE |
|
NEW PATCH |
|
SUBMIT PATCH |
|
REVISED PATCH |
|
RESOLVE ISSUE (OWNER/MAINTAINER) |
|
NAMING PATCH |
|
EXAMINE PATCH |
|
FIND REPOSITORY |
|
GIT AUTHENTICATION |
|
GIT CONFIGURATION |
|
SECURITY COVERAGE |
|
ANONYMYZED EMAIL |
|
CONTRIBUTION PTR |
|
https://www.drupal.org/docs/distributions/degov/semantic-versioning-model
ReplyDeleteMODULE REVISIT (ADD NEW FEATURES)
ReplyDeleteUPTADE FROM:
# Switch to appropriate branch and pull the code
git checkout -b 8.x-1.x
git pull
TO:
# Switch to appropriate branch and pull the code
git checkout -b 8.x-1.x
git add .
git pull origin 8.x-1.x
# Take an example case of my Download On-The-Fly (download_otf) custom module
ReplyDelete# First you need to create a Module Node
Check New Module
# Be ready with the module's repository details created in previous step
Check Find Repository
# We believe that the custom module is ready and already installed locally
# Now, go to the respective module directory
cd /path/to/module
# Initialize git for collaboration
git init
git remote add origin git@git.drupal.org:project/download_otf.git
# Check remote once
git remote -v
origin git@git.drupal.org:project/download_otf.git (fetch)
origin git@git.drupal.org:project/download_otf.git (push)
# Create a new branch
git checkout -b 8.x-1.x
# Now, stage all module files and check the status
git add .
git status
# Before committing the code- configure Git with correct user name/email
Check Git Configuration
Profile >> GIT ACCESS
Get you no-reply email Email addresses in Git repositories can be accessed by anyone looking at the Git log. It is generally considered appropriate to use a real, public-facing email for Git. If you prefer to use an anonymized address, use:
https://drupaldrug.blogspot.com/2020/06/drupal-contribution.html#dd-heading-security-coverage
ReplyDeleteThis may take half a day to reflect. By that time you may see message on composer
You are using Drupal packages that are not supported by the Drupal Security Team!
- drupal/colorpalette:1.0.2.0: Project has not opted into security advisory coverage!
Make sure u have minimum
ReplyDeletemodule.info
composer.json
Nice Blog, it is very Impressive.Keep Sharing With us.
ReplyDeleteDrupal Course in Chennai
Drupal Course in Bangalore
See https://drupal.org/project/config_inspector for a module to help with debugging your schemas. The module helps find missing schemas and schema elements with various views on your data and schema.
ReplyDeleteCode style to use for schema files https://www.drupal.org/docs/drupal-apis/configuration-api/configuration-schemametadata#codestyle
Deletedrush config:inspect --detail --only-error
DeleteSecurity issues should not be reported as a general issue. Follow the procedure for reporting security issues https://www.drupal.org/node/3156997.
ReplyDeleteSemantic Versioning -- MAJOR.MINOR.PATCH -- https://semver.org/
ReplyDelete