check the indexer status
php bin/magento indexer:status
Reset it running the below command
php bin/magento indexer:reset
check the indexer status
php bin/magento indexer:status
Reset it running the below command
php bin/magento indexer:reset
Add the below code in your theme’s default.xml file
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="navigation.sections" remove="true"/>
</body>
</page>
I have encountered similar issue and in my case, It was due to missing config.php in app/etc.
check if any folder is present in the root folder with the name of branch you are trying to checkout
Just end your url with a /(Slash).
Run the following commands
wget https://download.anydesk.com/linux/rhel7/anydesk-2.9.5-1.el7.x86_64.rpm
yum localinstall anydesk-2.9.5-1.el7.x86_64.rpm
Run the following command to clone a specific branch
git clone REPO-URL -b BRANCH-NAME
Eg: git clone https://www.github.com/Repo/FirstRepo -b development
Run the following command to compress an entire directory or a single file on Linux. It’ll also compress every other directory inside a directory you specify–in other words, it works recursively.
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
Here’s what those switches actually mean:
-c: Create an archive.
-z: Compress the archive with gzip.
-v: Display progress in the terminal while creating the archive, also known as “verbose” mode. The v is always optional in these commands, but it’s helpful.
-f: Allows you to specify the filename of the archive.
scp allows files to be copied to, from, or between different hosts. It uses ssh for data transfer and provides the same authentication and same level of security as ssh.
$ scp your_username@remotehost.edu:FILENAME.txt /some/local/directory