<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Git on Jared Szajkowski, P.E., PMP</title><link>https://www.jaredszajkowski.com/stack/categories/git/</link><description>Recent content in Git on Jared Szajkowski, P.E., PMP</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Tue, 10 Jun 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://www.jaredszajkowski.com/stack/categories/git/index.xml" rel="self" type="application/rss+xml"/><item><title>Git Quick Start Guide</title><link>https://www.jaredszajkowski.com/stack/2023/10/16/git-quick-start-guide/</link><pubDate>Mon, 16 Oct 2023 00:00:00 +0000</pubDate><guid>https://www.jaredszajkowski.com/stack/2023/10/16/git-quick-start-guide/</guid><description>&lt;img src="https://www.jaredszajkowski.com/stack/2023/10/16/git-quick-start-guide/cover.jpg" alt="Featured image of post Git Quick Start Guide" /&gt;&lt;h2 id="introduction"&gt;Introduction
&lt;/h2&gt;&lt;p&gt;Here are my notes for some of the more commonly used git commands along with initial setup for git in Linux.&lt;/p&gt;
&lt;h2 id="installation"&gt;Installation
&lt;/h2&gt;&lt;p&gt;To begin, install as follows for Arch Linux:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ sudo pacman -Sy git
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Or&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ yay git
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Pacman will include all required depencies.&lt;/p&gt;
&lt;h2 id="initial-configuration"&gt;Initial configuration
&lt;/h2&gt;&lt;p&gt;First, set your name and email address:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ git config --global user.name &amp;quot;Firstname Lastname&amp;quot;
$ git config --global user.email &amp;quot;email@address.com&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Then, set your preferred text editor (if you have one). I use nano:&lt;/p&gt;</description></item></channel></rss>