<?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: David Gitonga</title>
    <description>The latest articles on DEV Community by David Gitonga (@david_gitonga_2983).</description>
    <link>https://dev.to/david_gitonga_2983</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%2F4070899%2Fae6d0be0-1f9d-4832-8438-4fb66df1c6bc.jpg</url>
      <title>DEV Community: David Gitonga</title>
      <link>https://dev.to/david_gitonga_2983</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/david_gitonga_2983"/>
    <language>en</language>
    <item>
      <title>Workflow Flow From Local Folder To GitHub</title>
      <dc:creator>David Gitonga</dc:creator>
      <pubDate>Fri, 21 Aug 2026 19:40:00 +0000</pubDate>
      <link>https://dev.to/david_gitonga_2983/workflow-flow-from-local-folder-to-github-1480</link>
      <guid>https://dev.to/david_gitonga_2983/workflow-flow-from-local-folder-to-github-1480</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;THE GITHUB PROJECT&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Imagine while creating your repository on GitHub,
you remember that you have to include your excel file or any file that is all the way tacked in your folders and you want to use Git. 
How do you go about it.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;GIT&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;How does Git work;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It use Linux , where you use SSH (Secure shell) which let you opens an encrypted terminal session to a remote machine in our case GitHub.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  THIS IS THE TYPICAL WORKFLOW FROM START TO FINISH
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Get Git bash first&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Great now open &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;we need a local folder in our Git Bash we run the following commands;&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;- ssh - to create a remote login
- ssh-keygen &lt;span class="nt"&gt;-t&lt;/span&gt; &amp;lt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="nt"&gt;-c&lt;/span&gt; &amp;lt;adress&amp;gt; - with the correct server_address
- &lt;span class="nb"&gt;ls&lt;/span&gt; &lt;span class="nt"&gt;-al&lt;/span&gt; ~/.shh- check &lt;span class="k"&gt;if &lt;/span&gt;you have added the new sshkey
- &lt;span class="nb"&gt;ls&lt;/span&gt; - which is listing the files and  directories &lt;span class="k"&gt;in &lt;/span&gt;the active directory
- &lt;span class="nb"&gt;cd&lt;/span&gt; - which opens a directory
- &lt;span class="nb"&gt;mkdir&lt;/span&gt; &amp;lt;name&amp;gt; - make a new directory
- &lt;span class="nb"&gt;touch &lt;/span&gt;file.text - to create an empty file
- nano file.text - write a comment or context of the data use &lt;span class="k"&gt;in &lt;/span&gt;place or &lt;span class="nt"&gt;-echo-&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;CREAT REPOSITORY ON GITHUB COPY SSH&lt;span class="o"&gt;}&lt;/span&gt;
- git remote add origin &amp;lt;ssh_key&amp;gt; - &lt;span class="nb"&gt;link &lt;/span&gt;to the remote server
- git commit - commit the &lt;span class="nb"&gt;link&lt;/span&gt;
- git status - check the branch
- git fetch - download a latest change 
- git push - to GitHub

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  CONCLUTION
&lt;/h2&gt;

&lt;p&gt;Git is easy once you understand the commands.&lt;br&gt;
Refresh your GitHub and watch as you have connected. &lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>lux</category>
      <category>ssh</category>
    </item>
    <item>
      <title>Onboarding Session At Lux DevHq</title>
      <dc:creator>David Gitonga</dc:creator>
      <pubDate>Tue, 11 Aug 2026 12:10:02 +0000</pubDate>
      <link>https://dev.to/david_gitonga_2983/onboarding-session-at-lux-devhq-1b3i</link>
      <guid>https://dev.to/david_gitonga_2983/onboarding-session-at-lux-devhq-1b3i</guid>
      <description>&lt;h1&gt;
  
  
  Introduction to lux dev
&lt;/h1&gt;

&lt;p&gt;This are all the things I've learned today about how to write articles it's roles and how to ensure you write a good article&lt;br&gt;
&lt;strong&gt;asterisks for bold&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;dash for italics&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;greater than for quotes &lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  line of code
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;SELECT * FROM Cohort9,application;&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  writing a block of code
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;SELECT&lt;/span&gt; &lt;span class="n"&gt;student&lt;/span&gt; &lt;span class="n"&gt;name_&lt;/span&gt;
&lt;span class="n"&gt;use&lt;/span&gt; &lt;span class="n"&gt;three&lt;/span&gt; &lt;span class="n"&gt;up&lt;/span&gt; &lt;span class="n"&gt;commas&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;a&lt;/span&gt; &lt;span class="n"&gt;block&lt;/span&gt; &lt;span class="k"&gt;of&lt;/span&gt; &lt;span class="n"&gt;code&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  photo session
&lt;/h2&gt;

&lt;p&gt;how to upload select from the upload icon, devto converts it to marklaguage&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb45k0rlexe4w4k5v6bz5.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb45k0rlexe4w4k5v6bz5.webp" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  how to add a URL link
&lt;/h2&gt;

&lt;p&gt;This is the link to the luxdev git hub link&lt;br&gt;
link:&lt;a&gt;luxdevHQ&lt;/a&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
    </item>
  </channel>
</rss>
