- Bullet point 1
- Bullet point 2
- Everything seems fine
- Bullet point 3
- Bullet point 4
{%- block footer %} | |
<div class="footer"> | |
{% if show_copyright %}©{{ copyright }}.{% endif %} | |
{% if theme_show_powered_by|lower == 'true' %} | |
{% if show_copyright %}|{% endif %} | |
Powered by <a href="http://sphinx-doc.org/">Sphinx {{ sphinx_version }}</a> | |
& <a href="https://github.com/bitprophet/alabaster">Alabaster {{ alabaster_version }}</a> | |
{% endif %} | |
{%- if show_source and has_source and sourcename %} | |
{% if show_copyright or theme_show_powered_by %}|{% endif %} |
To use git gui and gitk | |
Get xinit | |
When want to use, run `startxin &` and `export DISPLAY=:0` | |
Need to get dejavu fonts to run git gui or gitk |
#!/bin/sh | |
# | |
# A hook script to remove BOM headers | |
echo "Running pre-commit BOM removal" | |
trap ctrl_c INT | |
ctrl_c () | |
{ |
git config --global alias.hist log --oneline --graph --date-order --decorate --all | |
git config --global alias.hist-auth log --branches --pretty=format:'%C(yellow) %h %C(magenta)%<(20)%an %C(green bold)%G? %C(blue nobold)%>>(16)%GK%Creset%<(24,trunc) %aD' | |
git config --global alias.commit-info log --stat -1 |