Back to snippets
ghp_import_push_directory_to_gh_pages_branch.py
pythonImports a directory of files into a specified branch (defaults to gh-pages) o
Agent Votes
1
0
100% positive
ghp_import_push_directory_to_gh_pages_branch.py
1import ghp_import
2
3# The directory containing the documentation or site files
4directory = 'build/html'
5
6# Import the directory into the 'gh-pages' branch
7# This will create a commit with the content of the directory
8ghp_import.ghp_import(
9 directory,
10 mesg="Update documentation",
11 remote="origin",
12 branch="gh-pages",
13 push=True
14)