Skip to content

Commit 4b7b0d3

Browse files
committed
new source control resource, updated changelog with recent changes
1 parent 9bf9773 commit 4b7b0d3

File tree

6 files changed

+39
-4
lines changed

6 files changed

+39
-4
lines changed

all.html

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4174,6 +4174,12 @@ <h2>Git resources</h2>
41744174
plenty of code snippets to get you up to speed with Git.</p>
41754175
</li>
41764176
<li>
4177+
<p><a href="https://codewords.recurse.com/issues/two/git-from-the-inside-out">Git from the inside out</a>
4178+
demonstrates how Git's graph-based data structure produces certain behavior
4179+
through example Git commands. This is a highly recommended read after you've
4180+
grasped the basics and are looking to go deeper with Git.</p>
4181+
</li>
4182+
<li>
41774183
<p><a href="http://gitready.com/">git ready</a> has a nice collection of blog posts based on
41784184
beginner, intermediate and advanced Git use cases.</p>
41794185
</li>
@@ -5498,6 +5504,12 @@ <h1>Change Log</h1>
54985504
<h2>2015</h2>
54995505
<h3>March</h3>
55005506
<ul>
5507+
<li>Added new <a href="/source-control.html">source control</a> resources.</li>
5508+
<li>Major site performance improvements. I removed font awesome and replaced
5509+
icons with SVG elements that mimic the font awesome icons.</li>
5510+
<li>Pushed the <a href="https://github.com/makaimc/fullstackpython.github.com/commit/2fc711b44ffed89c9855f4f999d4c1df076bc44d">1000th commit</a>
5511+
to Full Stack Python!
5512+
<img src="theme/img/1000th-commit.jpg" width="100%" alt="Screenshot of 1000th commit to Full Stack Python." class="technical-diagram" /></li>
55015513
<li>Major update to <a href="/vim.html">Vim</a> page to add screenshots, a better example
55025514
.vimrc configuration and many more resources.</li>
55035515
<li>Updated the <a href="/web-analytics.html">web analytics</a> page with a new
@@ -5684,7 +5696,7 @@ <h3>April</h3>
56845696
<li>
56855697
<p>New logo! This one's way more Python software stack, way less boring
56865698
folder-thingy. Here's how the old one looked in comparison:
5687-
<img src="theme/img/old-logo.png" width="100%" alt="Old Full Stack Python logo" class="technical-diagram" /></p>
5699+
<img src="theme/img/old-logo.png" width="100%" alt="Old Full Stack Python logo" class="technical-diagram" /></p>
56885700
</li>
56895701
<li>
56905702
<p>Added a <a href="../future-directions.html">future direction</a> section to explain

change-log.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ <h1>Change Log</h1>
4242
<h2>2015</h2>
4343
<h3>March</h3>
4444
<ul>
45+
<li>Added new <a href="/source-control.html">source control</a> resources.</li>
46+
<li>Major site performance improvements. I removed font awesome and replaced
47+
icons with SVG elements that mimic the font awesome icons.</li>
48+
<li>Pushed the <a href="https://github.com/makaimc/fullstackpython.github.com/commit/2fc711b44ffed89c9855f4f999d4c1df076bc44d">1000th commit</a>
49+
to Full Stack Python!
50+
<img src="theme/img/1000th-commit.jpg" width="100%" alt="Screenshot of 1000th commit to Full Stack Python." class="technical-diagram" /></li>
4551
<li>Major update to <a href="/vim.html">Vim</a> page to add screenshots, a better example
4652
.vimrc configuration and many more resources.</li>
4753
<li>Updated the <a href="/web-analytics.html">web analytics</a> page with a new
@@ -228,7 +234,7 @@ <h3>April</h3>
228234
<li>
229235
<p>New logo! This one's way more Python software stack, way less boring
230236
folder-thingy. Here's how the old one looked in comparison:
231-
<img src="theme/img/old-logo.png" width="100%" alt="Old Full Stack Python logo" class="technical-diagram" /></p>
237+
<img src="theme/img/old-logo.png" width="100%" alt="Old Full Stack Python logo" class="technical-diagram" /></p>
232238
</li>
233239
<li>
234240
<p>Added a <a href="../future-directions.html">future direction</a> section to explain

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-26T16:35:16Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-27T09:12:27Z</updated></feed>

source-control.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,12 @@ <h2>Git resources</h2>
146146
plenty of code snippets to get you up to speed with Git.</p>
147147
</li>
148148
<li>
149+
<p><a href="https://codewords.recurse.com/issues/two/git-from-the-inside-out">Git from the inside out</a>
150+
demonstrates how Git's graph-based data structure produces certain behavior
151+
through example Git commands. This is a highly recommended read after you've
152+
grasped the basics and are looking to go deeper with Git.</p>
153+
</li>
154+
<li>
149155
<p><a href="http://gitready.com/">git ready</a> has a nice collection of blog posts based on
150156
beginner, intermediate and advanced Git use cases.</p>
151157
</li>

source/content/pages/07-web-app-deployment/08-source-control.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,11 @@ reviews the basics of distributed version control systems.
108108
is exactly what the title says it is. This is a well written guide with
109109
plenty of code snippets to get you up to speed with Git.
110110

111+
* [Git from the inside out](https://codewords.recurse.com/issues/two/git-from-the-inside-out)
112+
demonstrates how Git's graph-based data structure produces certain behavior
113+
through example Git commands. This is a highly recommended read after you've
114+
grasped the basics and are looking to go deeper with Git.
115+
111116
* [git ready](http://gitready.com/) has a nice collection of blog posts based on
112117
beginner, intermediate and advanced Git use cases.
113118

source/content/pages/13-meta/02-change-log.markdown

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ the
1414

1515
## 2015
1616
### March
17+
* Added new [source control](/source-control.html) resources.
18+
* Major site performance improvements. I removed font awesome and replaced
19+
icons with SVG elements that mimic the font awesome icons.
20+
* Pushed the [1000th commit](https://github.com/makaimc/fullstackpython.github.com/commit/2fc711b44ffed89c9855f4f999d4c1df076bc44d)
21+
to Full Stack Python!
22+
<img src="theme/img/1000th-commit.jpg" width="100%" alt="Screenshot of 1000th commit to Full Stack Python." class="technical-diagram" />
1723
* Major update to [Vim](/vim.html) page to add screenshots, a better example
1824
.vimrc configuration and many more resources.
1925
* Updated the [web analytics](/web-analytics.html) page with a new
@@ -189,7 +195,7 @@ the
189195
Kinda has that "choose your own adventure" thing going for it, doesn't it?
190196
* New logo! This one's way more Python software stack, way less boring
191197
folder-thingy. Here's how the old one looked in comparison:
192-
<img src="theme/img/old-logo.png" width="100%" alt="Old Full Stack Python logo" class="technical-diagram" />
198+
<img src="theme/img/old-logo.png" width="100%" alt="Old Full Stack Python logo" class="technical-diagram" />
193199

194200
* Added a [future direction](../future-directions.html) section to explain
195201
current priorities for further developments on the site.

0 commit comments

Comments
 (0)