Skip to main content
431
results
Andrew Fletcher
I'm in an environment where the default branch is staging and I'm attempting to run a git merge.  However, in actioning this command, I'm been greeted with the following response 'not something we can merge' ❯ git merge origin/{branch} merge: origin/{branch} - not something we can mergeTo resolve this, first I attempted to do a git checkout to the branch But this was swiftly meet with "did not match any file(s) known to git" git checkout {branch} error: pathspec '{branch}' did not match...
Andrew Fletcher
Whilst attempting to download the latest config.zip file for Solr, I was greeted...
Andrew Fletcher
Having a situation where I'm running a sub theme based on Bootstrap Barrio, but...
Andrew Fletcher
This guide has been compiled as a reference tool on how to access field values...
Andrew Fletcher
Creating a foreach loop such as  var maxDigits: Int = 5 private var...
Andrew Fletcher
How to count the number of files in a directory.  At some point you'll have a directory or directories that you need to know the number of files in them.  On Linux, the list command (ls) is piped with the wc -l command. ls | wc -lThis command works great if all the files are located in one directory.  What about if you have multiple directories.  Then you will need to use the find command piped with the wc command find <directory> -type f | wc -lThis command only...
Andrew Fletcher
Running Docker, I deleted the images and containers they had been built to date....
Andrew Fletcher
I've recently upgraded the server Ubuntu 20.04 updating the PHP version from 7.4...
Andrew Fletcher
Installing PHP on OSX and it installed PHP 8.2.x.  However, for my...
Andrew Fletcher
A recent upgrade to PHP 8.1, has highlighted an error that hadn't been appearing...
Andrew Fletcher
Setting up the admin password.   Process: 1. Edit jetty.xml To begin you are going to edit the file “server/etc/jetty.xml”.  However, if you aren't sure of the location of jetty.xml, run the command find / -name jetty.xml -type fFor me, the output was /opt/solr-8.11.1/server/etc/jetty.xmlEdit the file jetty.xml, by adding it before the Configure tag ends <Callname="addBean"> <Arg> <New class="org.eclipse.jetty.security.HashLoginService"> <Set...
Andrew Fletcher
Looking at composer I first wanted to check the current version, which is...
Andrew Fletcher
How do you remove a file from git? Use the command (rm) to remove files from...
Andrew Fletcher
Working in Drupal 9.5 and I'm now getting the following cache tag error The...
Andrew Fletcher
Regular commands for brew   Brew update This updates Homebrew itself....