<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Your Site Title</title><link>https://greeneaaron1.github.io/</link><description>Recent content on Your Site Title</description><generator>Hugo</generator><language>en</language><lastBuildDate>Tue, 23 Dec 2025 10:00:00 -0500</lastBuildDate><atom:link href="https://greeneaaron1.github.io/index.xml" rel="self" type="application/rss+xml"/><item><title>Git workflows for beginners</title><link>https://greeneaaron1.github.io/posts/my-first-post/</link><pubDate>Tue, 23 Dec 2025 10:00:00 -0500</pubDate><guid>https://greeneaaron1.github.io/posts/my-first-post/</guid><description>&lt;p&gt;This is a guide I made while learning how to code and use git. Hope you find it useful too!&lt;/p&gt;
&lt;h2 id="typical-flow-for-90-of-cases"&gt;Typical flow (for 90% of cases)&lt;/h2&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;git clone # get repo (first time)

OR (if you already cloned it)

git pull origin main # update local main

git checkout -b new-branch # create branch

[make edits]

git diff # (optional) see what you changed
git status # (optional) see what’s staged vs not

git add . # stage changes
git commit -m “message” # snapshot commit
git push origin new-branch # push branch

[create PR on GitHub]

after merging the PR:

git checkout main
git pull origin main

git branch -D old-branch # delete local branch
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id="quick-checks"&gt;Quick checks&lt;/h2&gt;
&lt;p&gt;Use these when you’re unsure what’s going on.&lt;/p&gt;</description></item><item><title>Chopin: Etudes, Op. 10 &amp; 25</title><link>https://greeneaaron1.github.io/music/album1/</link><pubDate>Fri, 27 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album1/</guid><description/></item><item><title>Linger Awhile</title><link>https://greeneaaron1.github.io/music/album2/</link><pubDate>Thu, 26 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album2/</guid><description/></item><item><title>Isles</title><link>https://greeneaaron1.github.io/music/album3/</link><pubDate>Wed, 25 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album3/</guid><description/></item><item><title>Nickel Creek</title><link>https://greeneaaron1.github.io/music/album4/</link><pubDate>Tue, 24 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album4/</guid><description/></item><item><title>Chopin Competition Highlights</title><link>https://greeneaaron1.github.io/music/album5/</link><pubDate>Mon, 23 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album5/</guid><description/></item><item><title>Modern Solo</title><link>https://greeneaaron1.github.io/music/album6/</link><pubDate>Sun, 22 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album6/</guid><description/></item><item><title>Butterfly Lovers Concerto &amp; Paganini</title><link>https://greeneaaron1.github.io/music/album7/</link><pubDate>Sat, 21 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album7/</guid><description/></item><item><title>Debussy</title><link>https://greeneaaron1.github.io/music/album8/</link><pubDate>Fri, 20 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album8/</guid><description/></item><item><title>Dawn</title><link>https://greeneaaron1.github.io/music/album9/</link><pubDate>Thu, 19 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album9/</guid><description/></item><item><title>The Dune Sketchbook</title><link>https://greeneaaron1.github.io/music/album10/</link><pubDate>Wed, 18 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album10/</guid><description/></item><item><title>Ysaye: Sonatas for Solo Violin</title><link>https://greeneaaron1.github.io/music/album11/</link><pubDate>Tue, 17 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album11/</guid><description/></item><item><title>Roots (Deluxe Edition)</title><link>https://greeneaaron1.github.io/music/album12/</link><pubDate>Mon, 16 Oct 2023 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/music/album12/</guid><description/></item><item><title>About</title><link>https://greeneaaron1.github.io/about/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://greeneaaron1.github.io/about/</guid><description>&lt;p&gt;Hi! I&amp;rsquo;m Aaron. I love learning about developer tools and consumer products. Other interests include reading, PC gaming, basketball, and playing piano.&lt;/p&gt;
&lt;p&gt;I studied economics at Stanford and currently work at &lt;a href="https://www.hume.ai/"&gt;Hume AI&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can reach me via:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.linkedin.com/in/aaron-greene-764459173/"&gt;LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/greeneaaron1"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item></channel></rss>