We want to merge a subdirectory containing a git repository into a master branch of parent directory git repository.
- Let the Parent directory git repository be
Folder
and the subdirectory git repository beSubFolder
.
SubFolder -> Folder
.
We want to merge the
SubFolder
into theFolder
-
Go to the
Folder
git repo and run the following commands:# in Folder
!
in VS Code gives basic template of html{% extends "base.html" %}
extends the base.html file{% block content %}
is the block where the content is written{% block title %}
is the block where the title is written{% block body %}
is the block where the body is written{% endblock %}
ends the block<h1> </h1>
is the html tag for the title and just like markdown it can be styled
{{variable}}
is the variable that is used to write the content
Here
python
is the name of the python executable. It can bepy
orpython3
depending on the version of python installed on your systemFor Linux users, use
python3
instead ofpython
-
Create Python virtual environment
python -m venv "venv-name"
For linux users, you can use
python3 -m venv "venv-name"
to create a virtual environment.