Git –assume-unchanged

To ignore watching/tracking a particular directory/file:

git update-index --assume-unchanged <file>


To undo it and start watching the file again:

git update-index --no-assume-unchanged <file>

Learn React In 30 Minutes

Learn React in 30 minutes

Learn useState In 15 Minutes – React Hooks Explained

Learn useEffect In 13 Minutes

Integrate your on-premises Bitbucket with Azure Pipelines

https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/on-premises-bitbucket?view=azure-devops

Sitecore Validators: Validating image width, height and aspect ratio

EXPORTING AND IMPORTING SITES AND APP POOLS FROM IIS 7 AND 7.5

To Export the Application Pools on IIS 7 :

%windir%\system32\inetsrv\appcmd list apppool /config /xml > c:\apppools.xml

To import the Application Pools:
%windir%\system32\inetsrv\appcmd add apppool /in < c:\apppools.xml

To Export all you’re website:
%windir%\system32\inetsrv\appcmd list site /config /xml > c:\sites.xml

To Import the website:
%windir%\system32\inetsrv\appcmd add site /in < c:\sites.xml

To export/import a single application pool:
%windir%\system32\inetsrv\appcmd list apppool “MyAppPool” /config /xml > c:\myapppool.xml

For further information: Exporting and Importing Sites and App Pools from IIS

How to start development with Sitecore Commerce 9 / Sitecore Commerce 9 Learning Resources

https://sitecore.stackexchange.com/questions/12771/how-to-start-development-with-sitecore-commerce-9-sitecore-commerce-9-learning