<?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: Godfrey Babu</title>
    <description>The latest articles on DEV Community by Godfrey Babu (@godfrey_babu_507967f0d166).</description>
    <link>https://dev.to/godfrey_babu_507967f0d166</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3709615%2Fad8d358c-cd47-41b3-8d6d-7e10eb580e69.png</url>
      <title>DEV Community: Godfrey Babu</title>
      <link>https://dev.to/godfrey_babu_507967f0d166</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/godfrey_babu_507967f0d166"/>
    <language>en</language>
    <item>
      <title>Introduction to Ms Excel for Data Analytics</title>
      <dc:creator>Godfrey Babu</dc:creator>
      <pubDate>Thu, 12 Mar 2026 16:53:27 +0000</pubDate>
      <link>https://dev.to/godfrey_babu_507967f0d166/introduction-to-ms-excel-for-data-analytics-1nk9</link>
      <guid>https://dev.to/godfrey_babu_507967f0d166/introduction-to-ms-excel-for-data-analytics-1nk9</guid>
      <description>&lt;p&gt;Microsoft Excel is a powerful tool for data analysis, which is perfect for beginners who want to start their journey into data analytics. This guide will take you through the fundamentals of Excel.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Data Analytics?
&lt;/h2&gt;

&lt;p&gt;Data analytics is the process of cleaning, transforming, and modeling data to discover useful information and support decision making.   &lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started With Excel for Data Analysis
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Understanding the basics of Excel&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Workbook: The entire Excel file&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Worksheet: Individual tabs within a workbook&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Cells: Individual data containers organized in rows and columns &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ribbon: The menu system containing all tools and functions &lt;/p&gt;&lt;/li&gt;
&lt;/ul&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.amazonaws.com%2Fuploads%2Farticles%2Fg6ysrxggopgramgkapfr.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fg6ysrxggopgramgkapfr.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Essential Excel Features for Data Analytics
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;2. Data cleaning and preparation&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Removing Duplicates &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Go to Data -&amp;gt; Remove Duplicates&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Choose which columns to check for duplicates&lt;/p&gt;&lt;/li&gt;
&lt;/ul&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.amazonaws.com%2Fuploads%2Farticles%2Fkyfdbsbbofcecds2p3tl.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fkyfdbsbbofcecds2p3tl.png" alt=" " width="800" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Basic Data Analysis&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SUM Function&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=SUM(A1:A10)

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;AVERAGE Function&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=AVERAGE(B1:B50)

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;COUNT and COUNTIF Functions&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=COUNT(C1:C100)        // Counts cells with numbers
=COUNTIF(D1:D100,"&amp;gt;50") // Counts cells meeting criteria

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;MIN and MAX Function&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=MIN(A1:A10)  // Finds smallest value
=MAX(A1:A10)  // Finds largest value

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;4. Sorting and Filtering Data&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sorting Data&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select your data range&lt;/li&gt;
&lt;li&gt;Then go to sort &lt;/li&gt;
&lt;li&gt;Given that you already chose a column sort (ascending/ descending)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Filtering Data&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select your data &lt;/li&gt;
&lt;li&gt;Then go to data on your ribbon &lt;/li&gt;
&lt;li&gt;Select filter&lt;/li&gt;
&lt;li&gt;Use dropdown arrows in headers to filter &lt;/li&gt;
&lt;/ol&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.amazonaws.com%2Fuploads%2Farticles%2F0nu9p5kanxu4f38vuils.png" 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.amazonaws.com%2Fuploads%2Farticles%2F0nu9p5kanxu4f38vuils.png" alt=" " width="800" height="506"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Creating a PivotTable&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the required data &lt;/li&gt;
&lt;li&gt;Go to Insert then select PivotTable &lt;/li&gt;
&lt;li&gt;Place the PivotTable on anew sheet &lt;/li&gt;
&lt;li&gt;Select the different areas how you want your table to show (Rows, Columns, Values, and Filters)&lt;/li&gt;
&lt;/ol&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.amazonaws.com%2Fuploads%2Farticles%2Foaps10bgmxcd84a78gjr.png" 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.amazonaws.com%2Fuploads%2Farticles%2Foaps10bgmxcd84a78gjr.png" alt=" " width="800" height="731"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Conditional Formatting for quick insight&lt;/strong&gt;&lt;br&gt;
Select the specific column that you want to have a breakdown of t, then go to home on your ribbon the select conditional formatting and choose how you want the data in the column to be simplified.&lt;br&gt;
You can choose the formatting rules like changing the colour of data distribution&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.amazonaws.com%2Fuploads%2Farticles%2F3ne4lpfq1lg2qsdyf7gh.png" 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.amazonaws.com%2Fuploads%2Farticles%2F3ne4lpfq1lg2qsdyf7gh.png" alt=" " width="800" height="535"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Creating Pivot Charts&lt;/strong&gt;&lt;br&gt;
After creating a PivotTable select the table then go to Insert the go to pivot charts choose the type of chart you want (Column chart, Line chart, Pie chart)&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.amazonaws.com%2Fuploads%2Farticles%2Fvpbb9eaj6hidszctllk7.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fvpbb9eaj6hidszctllk7.png" alt=" " width="800" height="635"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>Introduction to Ms Excel for Data Analytics</title>
      <dc:creator>Godfrey Babu</dc:creator>
      <pubDate>Sun, 01 Feb 2026 23:30:45 +0000</pubDate>
      <link>https://dev.to/godfrey_babu_507967f0d166/introduction-to-ms-excel-for-data-analytics-3561</link>
      <guid>https://dev.to/godfrey_babu_507967f0d166/introduction-to-ms-excel-for-data-analytics-3561</guid>
      <description>&lt;p&gt;Microsoft Excel is a powerful tool for data analysis, which is perfect for beginners who want to start their journey into data analytics. This guide will take you through the fundamentals of Excel.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Data Analytics?
&lt;/h2&gt;

&lt;p&gt;Data analytics is the process of cleaning, transforming, and modeling data to discover useful information and support decision making.   &lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started With Excel for Data Analysis
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Understanding the basics of Excel&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Workbook: The entire Excel file&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Worksheet: Individual tabs within a workbook&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Cells: Individual data containers organized in rows and columns &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ribbon: The menu system containing all tools and functions &lt;/p&gt;&lt;/li&gt;
&lt;/ul&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.amazonaws.com%2Fuploads%2Farticles%2Fg6ysrxggopgramgkapfr.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fg6ysrxggopgramgkapfr.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Essential Excel Features for Data Analytics
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;2. Data cleaning and preparation&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Removing Duplicates &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Go to Data -&amp;gt; Remove Duplicates&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Choose which columns to check for duplicates&lt;/p&gt;&lt;/li&gt;
&lt;/ul&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.amazonaws.com%2Fuploads%2Farticles%2Fkyfdbsbbofcecds2p3tl.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fkyfdbsbbofcecds2p3tl.png" alt=" " width="800" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Basic Data Analysis&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SUM Function&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=SUM(A1:A10)

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;AVERAGE Function&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=AVERAGE(B1:B50)

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;COUNT and COUNTIF Functions&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=COUNT(C1:C100)        // Counts cells with numbers
=COUNTIF(D1:D100,"&amp;gt;50") // Counts cells meeting criteria

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;MIN and MAX Function&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=MIN(A1:A10)  // Finds smallest value
=MAX(A1:A10)  // Finds largest value

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;4. Sorting and Filtering Data&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sorting Data&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select your data range&lt;/li&gt;
&lt;li&gt;Then go to sort &lt;/li&gt;
&lt;li&gt;Given that you already chose a column sort (ascending/ descending)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Filtering Data&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select your data &lt;/li&gt;
&lt;li&gt;Then go to data on your ribbon &lt;/li&gt;
&lt;li&gt;Select filter&lt;/li&gt;
&lt;li&gt;Use dropdown arrows in headers to filter &lt;/li&gt;
&lt;/ol&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.amazonaws.com%2Fuploads%2Farticles%2F0nu9p5kanxu4f38vuils.png" 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.amazonaws.com%2Fuploads%2Farticles%2F0nu9p5kanxu4f38vuils.png" alt=" " width="800" height="506"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Creating a PivotTable&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select the required data &lt;/li&gt;
&lt;li&gt;Go to Insert then select PivotTable &lt;/li&gt;
&lt;li&gt;Place the PivotTable on anew sheet &lt;/li&gt;
&lt;li&gt;Select the different areas how you want your table to show (Rows, Columns, Values, and Filters)&lt;/li&gt;
&lt;/ol&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.amazonaws.com%2Fuploads%2Farticles%2Foaps10bgmxcd84a78gjr.png" 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.amazonaws.com%2Fuploads%2Farticles%2Foaps10bgmxcd84a78gjr.png" alt=" " width="800" height="731"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Conditional Formatting for quick insight&lt;/strong&gt;&lt;br&gt;
Select the specific column that you want to have a breakdown of t, then go to home on your ribbon the select conditional formatting and choose how you want the data in the column to be simplified.&lt;br&gt;
You can choose the formatting rules like changing the colour of data distribution&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.amazonaws.com%2Fuploads%2Farticles%2F3ne4lpfq1lg2qsdyf7gh.png" 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.amazonaws.com%2Fuploads%2Farticles%2F3ne4lpfq1lg2qsdyf7gh.png" alt=" " width="800" height="535"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Creating Pivot Charts&lt;/strong&gt;&lt;br&gt;
After creating a PivotTable select the table then go to Insert the go to pivot charts choose the type of chart you want (Column chart, Line chart, Pie chart)&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.amazonaws.com%2Fuploads%2Farticles%2Fvpbb9eaj6hidszctllk7.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fvpbb9eaj6hidszctllk7.png" alt=" " width="800" height="635"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>programming</category>
    </item>
    <item>
      <title>GIT AND GITHUB FOR BEGINNERS:HOW TO TRACK CHANGES,PUSH AND PULL CODE</title>
      <dc:creator>Godfrey Babu</dc:creator>
      <pubDate>Sun, 18 Jan 2026 09:32:40 +0000</pubDate>
      <link>https://dev.to/godfrey_babu_507967f0d166/git-and-github-for-beginnershow-to-track-changespush-and-pull-code-28fm</link>
      <guid>https://dev.to/godfrey_babu_507967f0d166/git-and-github-for-beginnershow-to-track-changespush-and-pull-code-28fm</guid>
      <description>&lt;p&gt;For a data engineering and data science student knowing about git and github is mandatory. Git helps us collaborate with others who we share common interests with. It also helps us track changes in you code and avoid losing your work.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is git
&lt;/h2&gt;

&lt;p&gt;Git is an open-source version control system that tracks changes made to your files over time, allowing you to go back to a previous version in case of any mistake&lt;/p&gt;

&lt;h2&gt;
  
  
  What is github
&lt;/h2&gt;

&lt;p&gt;Github is a cloud-based platform where developers store, manage and share their software code.&lt;/p&gt;

&lt;h2&gt;
  
  
  step 1:Install git bash
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Install git&lt;/li&gt;
&lt;li&gt;Run installer&lt;/li&gt;
&lt;li&gt;Finish installation&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  verify installation
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git --version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 2:Setup git
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git config --global user.name "Your Name"
git config --global user.email "your_email@example.com"

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

&lt;/div&gt;



&lt;p&gt;Confirm configuration&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git config --list

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

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 3.Connect git bash and github through SSH key
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ssh-add ~/.ssh/id_ed25519

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

&lt;/div&gt;



&lt;h2&gt;
  
  
  Add SSH key to github
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Go to Github &lt;/li&gt;
&lt;li&gt;Go to settings&lt;/li&gt;
&lt;li&gt;Click SSH key&lt;/li&gt;
&lt;li&gt;Click new SSH key&lt;/li&gt;
&lt;li&gt;Paste the key and save&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Test connection
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ssh -T git@github.com

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

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 5.Clone repository
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git-ssh-practice.git

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

&lt;/div&gt;



&lt;p&gt;Go to project folder&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd git-ssh-practice

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

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 6.chek changes with git
&lt;/h2&gt;

&lt;p&gt;Check status:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git status

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

&lt;/div&gt;



&lt;p&gt;Add files&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git add .

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

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 7. Push code to GitHub
&lt;/h2&gt;

&lt;p&gt;Connect local repository to GitHub&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git remote add origin https://github.com/username/repository-name.git

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

&lt;/div&gt;



&lt;p&gt;Push code&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git push -u origin main

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

&lt;/div&gt;



&lt;p&gt;Now your code is active on GitHub&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 8. Pull code from GitHub
&lt;/h2&gt;

&lt;p&gt;This is advisable while working with multiple machines or while working with a team.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git pull origin main

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

&lt;/div&gt;



&lt;p&gt;This collects latest changes and updates your local files.&lt;/p&gt;

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