<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Vishnu's Blog]]></title><description><![CDATA[Chronicling my journey in tech]]></description><link>https://blog.vsujeesh.com</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Apr 2026 01:03:25 GMT</lastBuildDate><atom:link href="https://blog.vsujeesh.com/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Git-ting Started]]></title><description><![CDATA[Git is one of those tools that we take for granted when writing software. Here are some basic commands to get you started on your journey as a programmer.
Setting up
git init ...

Making Your Changes
Git Status
git status

Git Add
git add .

The Git ...]]></description><link>https://blog.vsujeesh.com/git-ting-started</link><guid isPermaLink="true">https://blog.vsujeesh.com/git-ting-started</guid><category><![CDATA[Git]]></category><category><![CDATA[technical articles]]></category><dc:creator><![CDATA[Vishnu S]]></dc:creator><pubDate>Fri, 20 Jan 2023 16:38:18 GMT</pubDate><content:encoded><![CDATA[<p>Git is one of those tools that we take for granted when writing software. Here are some basic commands to get you started on your journey as a programmer.</p>
<h2 id="heading-setting-up">Setting up</h2>
<pre><code class="lang-bash">git init ...
</code></pre>
<h2 id="heading-making-your-changes">Making Your Changes</h2>
<h3 id="heading-git-status">Git Status</h3>
<pre><code class="lang-bash">git status
</code></pre>
<h3 id="heading-git-add">Git Add</h3>
<pre><code class="lang-bash">git add .
</code></pre>
<p>The Git Add command adds in files with changes that need to be committed into a staging area. At this point, the changes are not yet saved, although they are recorded down.</p>
<h3 id="heading-git-commit">Git Commit</h3>
<pre><code class="lang-bash">git commit -m <span class="hljs-string">"&lt;insert commit message here&gt;"</span>
</code></pre>
<p>Git commit, as the name suggests, saves your changes as a commit. It is customary to add a commit message using the <code>-m</code> flag, which serves as a descriptive reminder of the changes that you have made. This might not seem so useful when you are making changes to code that you alone work on.</p>
<h2 id="heading-syncing-up">Syncing Up</h2>
<h2 id="heading-fixing-a-mess">Fixing a Mess</h2>
]]></content:encoded></item></channel></rss>