Skip to main content
433
results
Andrew Fletcher
Something I haven't had to do in a while is to change the name of a Git branch both local and remote.   Steps to renaming a branch Rename your local branch: If you are on the branch you want to rename: git branch -m new-nameWhereas, if you're on a different branch: git branch -m old-name new-nameDelete the old-name remote branch and push the new-name local branch: git push origin :old-name new-nameReset the upstream branch for the new-name local branch:Switch to the branch and then: git...
Andrew Fletcher
Post a NetSkope update, composer would fail when running any command that...
Andrew Fletcher
By default the maximum file upload size is set to 2MB.  It is not a...
Andrew Fletcher
Attempting to run a preview, and I'm seeing the following error in Android...
Andrew Fletcher
Twig error Twig\Error\SyntaxError: Unknown "filter" tag. in...
Andrew Fletcher
Post upgrading from Drupal 9.5.10 to Drupal 10.1.3, I was seeing the following error when viewing a view page: TypeError: Cannot assign null to property Drupal\views\Plugin\views\argument\ArgumentPluginBase::$operator of type string in Drupal\views\Plugin\views\argument\ArgumentPluginBase->unpackArgumentValue() (line 1310 of core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php).Finding an insight to this error was on the following Drupal issues page -...
Andrew Fletcher
I need to generate a patch and then apply automatically to my Drupal...
Andrew Fletcher
In the terminal type, the following command: sudo apt updateAfter typing the...
Andrew Fletcher
To get Flysystem S3 ready for Drupal 10, I needed to apply the latest patch to...
Andrew Fletcher
To PATCH a user is to update an existing user... actually the current user...
Andrew Fletcher
  Updating to Drupal 10 Begin by upgrading Drupal 9 to the latest version.  Currently that is 9.5.10   Review existing modules and themes Using the Upgrade Status (https://www.drupal.org/project/upgrade_status) module, review the state of existing installed and uninstalled modules and themes.  This includes removing deprecated modules in Drupal 10 such as Color, HAL, RDF and themes Bartik and Stable.  Note, for Drupal 10, the theme Stable is now Stable9. Note - while...
Andrew Fletcher
Resources Type Version Android Studio Android Studio Giraffe | 2022.3.1...
Andrew Fletcher
Updating the Android app and while testing I'm seeing the following error in the...
Andrew Fletcher
Git filename error when running the git add command.  The error I'm...
Andrew Fletcher
Attempting to run a composer update command, you know the one used...