This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if you want to redirect Odoo /shop page to /products | |
<template id="redirect_shop_to_products" inherit_id="website_sale.product"> | |
<xpath expr="//li[@class='breadcrumb-item o_not_editable']/a" position="attributes"> | |
<attribute name="t-att-href">keep('/products', category=0)</attribute> | |
</xpath> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Just use the command to clone only a particular branch not all branches from a repo | |
git clone --branch <branch_name> --single-branch <repository_url> |