<?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: Vyonara keiy</title>
    <description>The latest articles on DEV Community by Vyonara keiy (@vyonara_keiy_535f4abe0b00).</description>
    <link>https://dev.to/vyonara_keiy_535f4abe0b00</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%2F4086432%2F3cd0831e-7ea9-47ff-8a26-d4dcd70ae8ad.jpg</url>
      <title>DEV Community: Vyonara keiy</title>
      <link>https://dev.to/vyonara_keiy_535f4abe0b00</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vyonara_keiy_535f4abe0b00"/>
    <language>en</language>
    <item>
      <title>Understanding the Git workflow</title>
      <dc:creator>Vyonara keiy</dc:creator>
      <pubDate>Sat, 22 Aug 2026 06:17:56 +0000</pubDate>
      <link>https://dev.to/vyonara_keiy_535f4abe0b00/understanding-the-git-workflow-3ml</link>
      <guid>https://dev.to/vyonara_keiy_535f4abe0b00/understanding-the-git-workflow-3ml</guid>
      <description>&lt;p&gt;Introduction&lt;br&gt;
Hello,I'm currently a data science student and this is my understanding of git workflow, from creating folders on my local computer to adding files, pushing and having them on my github repository.&lt;/p&gt;

&lt;h2&gt;
  
  
  Working directory
&lt;/h2&gt;

&lt;p&gt;This is the active folder created in the local machine which will have all the files related to the project.&lt;br&gt;
We can create a folder on terminal by following the steps,&lt;/p&gt;

&lt;p&gt;-Launch your terminal&lt;br&gt;
-cd desktop :this is to ensure that we are in the desktop folder&lt;br&gt;
-mkdir data :this is to create a new folder on desktop&lt;br&gt;
-touch school.py :this is to create a python file inside the data folder&lt;br&gt;
-git status :this tells us the repository we are working in&lt;/p&gt;

&lt;h2&gt;
  
  
  Staging
&lt;/h2&gt;

&lt;p&gt;This allows us to prepare to save the files that we have created. We can save a specific file or all files at once. For example;assuming we have three different files eg.schools.py ,books.py ,teachers.py &lt;br&gt;
-git add . :this saves all the files in the folder&lt;br&gt;
-git add schools.py :this saves only the schools files&lt;/p&gt;

&lt;h2&gt;
  
  
  Commit
&lt;/h2&gt;

&lt;p&gt;This allows us to save the files from the staging step.&lt;br&gt;
.git commit -m "creating schools files"&lt;br&gt;
.git commit :saves the files to git hub&lt;br&gt;
.-m :this is a message that explains the change that happens in the folder&lt;br&gt;
."    " :this briefly explains the change that happened&lt;/p&gt;

&lt;h2&gt;
  
  
  Push
&lt;/h2&gt;

&lt;p&gt;This allows us to move our work from our local computer to git hub.&lt;br&gt;
git push origin main ;origin points us to our online git hub while main is the name of the branch where we are making the changes&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>git</category>
      <category>learning</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
