You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source-control.html
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,14 @@ <h2>Why is source control necessary?</h2>
51
51
a necessity regardless of time size or the programming ecosystem used. Every
52
52
project should immediately begin by using a version control system such
53
53
as Git or Mercurial.</p>
54
+
<p><imgsrc="theme/img/app-source-control.png" width="100%" class="technical-diagram" alt="App deployment uses a server to pull from the source control system."></p>
55
+
<p>Pulling code during a deployment is One way source control systems can fit
56
+
into the deployment process. </p>
57
+
<p>Note that some developers recommend deployment pipelines package the source
58
+
code to deploy it and never have a production environment touch a source
59
+
control system directly. However, for small scale deployments it's often
60
+
easiest to pull from source code when you're getting started instead of
61
+
figuring out how to wrap the Python code in a system installation package.</p>
Copy file name to clipboardExpand all lines: source/content/pages/03-deployment/0313-source-control.markdown
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,17 @@ a necessity regardless of time size or the programming ecosystem used. Every
32
32
project should immediately begin by using a version control system such
33
33
as Git or Mercurial.
34
34
35
+
<imgsrc="theme/img/app-source-control.png"width="100%"class="technical-diagram"alt="App deployment uses a server to pull from the source control system.">
36
+
37
+
Pulling code during a deployment is One way source control systems can fit
38
+
into the deployment process.
39
+
40
+
Note that some developers recommend deployment pipelines package the source
41
+
code to deploy it and never have a production environment touch a source
42
+
control system directly. However, for small scale deployments it's often
43
+
easiest to pull from source code when you're getting started instead of
44
+
figuring out how to wrap the Python code in a system installation package.
45
+
35
46
36
47
## Source control systems
37
48
*[Git](http://git-scm.com/) is a free and open source distributed version
0 commit comments