blob: a6da093f8f2340a18c24d99b93d9444cf4421e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="Ben's Corner of the Web" property="og:title">
<meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description">
<meta content="https://ben.sanders.life" property="og:url">
<meta content="https://bsand.net/assets/me.jpeg" property="og:image">
<meta content="#b172bc" data-react-helmet="true" name="theme-color">
<link rel="stylesheet" href="/main.css">
<title>Ben's Website</title>
</head>
<body>
<div id="website-container">
<ul class="navigation">
<li><a href="/" title="home">~/</a></li>
<li><a href="/about" title="about me">~/about</a></li>
<li><a href="/resume" title="my resume">~/resume</a></li>
<li><a href="/blog" title="my blog">~/blog</a></li>
<li><a href="/resources" title="resources">~/resources</a></li>
</ul>
<h1>Going Live With Git</h1>
<p class="meta">Benjamin Sanders | 19 June 2016 | git</p>
<p>Git is a very cool tool of which I have been using to help me develop this site. As a matter of fact you can go and find all the source code for this current site on my GitHub. Plugs aside I have installed git on my live server and just tried pushing some changes over to it vs my github. I can get used to going live with websites like that I think. haha</p>
<p>Regardless it’s very handy as I don’t have to keep up a Filezilla window or try using any of the finiky plugins for Sublime Text or Atom to upload files. Plus I have version control with Git so that if I don’t like changes I made I can revert back. Granted I haven’t figured out how to yet but the option should be there somewhere.</p>
<p>So now let me just outline to you all my new work flow process for writing a post with Jekyll and Git.</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>1. I open a new file in Sublime Text.
2. Put all the Jekyll Front-Matter in it.
3. Write the post and edit it to look all sexy
4. Push it to the server and SHARE!
</code></pre></div></div>
<p>That’s about it for now and I’m sure I’ll refine all that later. Also this workflow allows me, as a console geek, to do EVERYTHING in a console window. I love everything about running console commands. <3</p>
<p>Till Next Time.</p>
<p>-Ben Sanders</p>
</div>
<footer>
<small>© Ben Sanders, 2025</small>
</footer>
<!-- <script src="./index.js"></script> -->
</body>
</html>
|