<?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: Eduxic</title>
    <description>The latest articles on DEV Community by Eduxic (@eduxic).</description>
    <link>https://dev.to/eduxic</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%2F944821%2F084035ca-8eeb-4678-ad45-bd311df9cd8f.png</url>
      <title>DEV Community: Eduxic</title>
      <link>https://dev.to/eduxic</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/eduxic"/>
    <language>en</language>
    <item>
      <title>Understanding Git Workflows</title>
      <dc:creator>Eduxic</dc:creator>
      <pubDate>Sat, 22 Aug 2026 17:09:51 +0000</pubDate>
      <link>https://dev.to/eduxic/understanding-git-workflows-4i52</link>
      <guid>https://dev.to/eduxic/understanding-git-workflows-4i52</guid>
      <description>&lt;p&gt;Over the past two days, we have been learning how to use git and Github.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Definition and Introduction to Git&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Git is a version control tool that is used to track changes made in a file.&lt;br&gt;
It is mostly used for collaboration between programmers.&lt;br&gt;
Git has a workflow made up of various stages;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Working Directory&lt;/li&gt;
&lt;li&gt;Staging&lt;/li&gt;
&lt;li&gt;Commit&lt;/li&gt;
&lt;li&gt;Push&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;
  
  
  1. &lt;strong&gt;Working Directory&lt;/strong&gt;
&lt;/h1&gt;

&lt;p&gt;This is where the file resides in the folder in your actual device. It is where you create, open, edit and delete files.&lt;br&gt;
There are two types of files in the working directory;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;em&gt;Untracked files&lt;/em&gt;; these are files that have not been added to the git tracking system.&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Tracked files&lt;/em&gt;; these are files that are in an initialized git repository. You initialize a repository by running the git init command&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;
  
  
  2. &lt;strong&gt;Staging Area&lt;/strong&gt;
&lt;/h1&gt;

&lt;p&gt;This is like a preview area for conducting reviews and organizing changes before adding them to your project history. It tells git what should be included in your next commit.&lt;/p&gt;

&lt;h1&gt;
  
  
  3. &lt;strong&gt;Commit&lt;/strong&gt;
&lt;/h1&gt;

&lt;p&gt;These are messages containing a brief description of the changes you made to a file.&lt;br&gt;
The command for commit is git commit -m "Your message"&lt;/p&gt;

&lt;h1&gt;
  
  
  4. &lt;strong&gt;Push&lt;/strong&gt;
&lt;/h1&gt;

&lt;p&gt;This entails sending the files to a repository in Github. &lt;/p&gt;

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