add missing git config - online edit of handbook/troggle/troglaptop.html

This commit is contained in:
Expo on server 2022-08-03 15:45:37 +01:00
parent cf148a8cab
commit 9fabf84c69

View File

@ -51,6 +51,12 @@ File permissions are a big issue.
provisioning so that systems are rebuilt cleanly. <a href="http://www.cuyc.org.uk">CUYC</a> (who also use Django) have a bash script which sets up a new django
development system. We should copy that in the first instance. Alas, we haven't got around to doing any of this yet.
<h2 id="git">Configuring git</h2>
<p>On a new machine you need to configure your git identity:
<pre><code>git config --global user.email "you@example.com"
git config --global user.name "Your Name"
</pre></code>
<h2 id="python">Installing python</h2>
<a href="https://xkcd.com/1987/"><img src="https://imgs.xkcd.com/comics/python_environment.png" align="right" hspace="20" width="230" alt='XKCD python install'></a>