-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.html
38 lines (36 loc) · 1.67 KB
/
code.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/master.css">
<script src="scripts/nav.js" defer></script>
<title>Michael Wagoner</title>
</head>
<body>
<header>
<h1>Coding</h1>
</header>
<div class="main-content">
<article>
<h2>Git</h2>
<p>I'm learning about git along with other coding tools and I seem to forget some of the less used commands. Every once in a while I want to check my config or make slight changes to it.</p>
<p>One of those things might be setting my username.</p>
<code>git config --global user.name "Michael Wagoner"</code>
<p>To make edits to existing entries, it seems easiest to open the config in a text editor. From the command line you can enter this:</p>
<code>git config --global --edit</code>
</article>
</div>
<footer>
<address>
<div class="footer-flexbox">
<a href="mailto:[email protected]">Email: [email protected]</a> <br>
<a href="https://www.linkedin.com/in/michael-wagoner-03a94b29">LinkedIn</a> <br>
<a href="https://github.com/mwwagoner">GitHub</a> <br>
<p>©2021 Michael Wagoner</p>
</div>
<a href="https://opensource.org/"><img src="images/osi_membership_badge.svg" alt="Open source initiative badge"></a>
</address>
</footer>
</body>
</html>