<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: PRUDENCE KORIR</title>
    <description>The latest articles on DEV Community by PRUDENCE KORIR (@prudence_korir_).</description>
    <link>https://dev.to/prudence_korir_</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4070937%2F82dcf867-b51f-42ef-aa4d-f1c719ae425d.png</url>
      <title>DEV Community: PRUDENCE KORIR</title>
      <link>https://dev.to/prudence_korir_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prudence_korir_"/>
    <language>en</language>
    <item>
      <title>My First GitHub Project: From a Local Folder to GitHub Using Git and SSH</title>
      <dc:creator>PRUDENCE KORIR</dc:creator>
      <pubDate>Sun, 23 Aug 2026 02:50:10 +0000</pubDate>
      <link>https://dev.to/prudence_korir_/my-first-github-project-from-a-local-folder-to-github-using-git-and-ssh-4k5e</link>
      <guid>https://dev.to/prudence_korir_/my-first-github-project-from-a-local-folder-to-github-using-git-and-ssh-4k5e</guid>
      <description>&lt;p&gt;⭐🚀⭐🚀&lt;br&gt;
When I first walked through the gates of LuxDevHq, my first thought was "endless possibilities". However, I was intimidated. I did not think I would measure up. But when I attended my first class, I learned that building something great starts with a great foundation and at LuxDevHq, that means mastering all the basics.&lt;/p&gt;

&lt;p&gt;In the last week, I worked on setting up a local project on my desktop which I then pushed to a live repository on GitHub using the command line.&lt;/p&gt;

&lt;p&gt;I was working with a "Kenya_Hospital_Health_Records" csv dataset which was to be stored in a sub-folder called "data" within the main folder on the desktop which is named after the file.&lt;/p&gt;

&lt;p&gt;These are the steps I took😄:&lt;/p&gt;
&lt;h2&gt;
  
  
  1. Local Project Set Up
&lt;/h2&gt;

&lt;p&gt;Open the bash terminal and navigate to the desktop using the &lt;code&gt;cd&lt;/code&gt; command and create the main folder along with the sub-folder.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;Desktop
&lt;span class="nb"&gt;mkdir&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; Kenya_Hospital_Health_Records_Project/Data
&lt;span class="nb"&gt;cd &lt;/span&gt;Kenya_Hospital_Health_Records_Project
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Copy and paste the file into the sub-folder.&lt;/p&gt;

&lt;h3&gt;
  
  
  Creating the README.md File
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"# KENYA HEALTH RECORDS ANALYSIS"&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; README.md
&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"##Project Overview"&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&amp;gt;&lt;/span&gt; README.md
&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"This is a project analysis for a hospital health records"&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&amp;gt;&lt;/span&gt; README.md
&lt;span class="nb"&gt;cat &lt;/span&gt;README.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;gt;&lt;/code&gt; operator adds new text to the file.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;gt;&amp;gt;&lt;/code&gt; operator adds text to already written text.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;cat README.md&lt;/code&gt; prints the contents of the file for review.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nano README.md&lt;/code&gt; edits the file.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  2. Creating a Tracked Git Repository
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;git init&lt;/code&gt; creates and empty repository.&lt;br&gt;
&lt;code&gt;git status&lt;/code&gt; checks the status of the repository.&lt;br&gt;
&lt;code&gt;git add .&lt;/code&gt; adds everything to the current repository.&lt;br&gt;
&lt;code&gt;git commit -m "Kenya Hospital Records Project&lt;/code&gt; the commit message helps to remember whatever it entails. &lt;br&gt;
&lt;code&gt;git remote add origin https://github.com/prudencejeronokorir-code/Git-Commands-Class.git&lt;/code&gt; this is the SSH key that links the local repository to the empty GitHub repository.&lt;br&gt;
&lt;code&gt;ssh -T git@github.com&lt;/code&gt; to confirm that the SSH key works&lt;br&gt;
&lt;code&gt;git push -u origin main&lt;/code&gt; pushes the local main branch to the remote origin on GitHub&lt;br&gt;
   *-u command helps avoid typing out the branch name upon every update.&lt;/p&gt;

&lt;p&gt;And with that you are done!!!&lt;br&gt;
🚀🚀🚀&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>dataengineering</category>
    </item>
  </channel>
</rss>
