<?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: SHARON CHEROCK</title>
    <description>The latest articles on DEV Community by SHARON CHEROCK (@shacherock).</description>
    <link>https://dev.to/shacherock</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%2F3709645%2Fc34e1434-3e51-4a8b-8654-ddd20794d05b.png</url>
      <title>DEV Community: SHARON CHEROCK</title>
      <link>https://dev.to/shacherock</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shacherock"/>
    <language>en</language>
    <item>
      <title>How Analysts Translate Messy Data, DAX and Dashboard into Action using Power BI</title>
      <dc:creator>SHARON CHEROCK</dc:creator>
      <pubDate>Mon, 09 Feb 2026 22:57:20 +0000</pubDate>
      <link>https://dev.to/shacherock/how-analysts-translate-messy-data-dax-and-dashboard-into-action-using-power-bi-4ikp</link>
      <guid>https://dev.to/shacherock/how-analysts-translate-messy-data-dax-and-dashboard-into-action-using-power-bi-4ikp</guid>
      <description>&lt;p&gt;Power BI makes raw data meaningful. This is achieved through visualization like charts and graphs. Data cleaning is done using the Power query which cleans and combines data from various sources &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data Cleaning in Power BI&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Some of the basic tasks include:&lt;br&gt;
.Removing duplicates&lt;br&gt;
.Handling missing values&lt;br&gt;
.Data type conversation&lt;br&gt;
.Replace values&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;DAX - Data Analysis Expressions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;DAX is a set of functions for calculations.&lt;br&gt;
After cleaning your data, you can now perform your calculations. &lt;br&gt;
You can use your formulas to calculate tables, calculations will add a table  or calculate columns, calculations will add a column.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Common DAX functions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;.Simple calculations like COUNT, SUM, AVERAGE, MIN, MAX&lt;br&gt;
.IF, this returns a different value whether true or false&lt;br&gt;
.DATEDDIFF, gives difference between two dates in days, months, years&lt;br&gt;
.SUMX,AVERAGEX,COUNTX&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Row context and Filter context in DAX&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Row context&lt;/em&gt;&lt;br&gt;
Operates on row to row basis. Examples of calculations include &lt;code&gt;SUMX&lt;/code&gt;, &lt;code&gt;AVERAGEX&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Filter context&lt;/em&gt;&lt;br&gt;
Filter Context refers to the set of filters applied to the data model before calculations.&lt;br&gt;
Example is a function like &lt;code&gt;CALCULATE&lt;/code&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Dashboards&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is a page that tells a story through visuals. It provides the highlights just with a look of it. You get a general view of the output without delving so much into it which can be used in decision making. &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%2Fd49nunyokzdve67mv257.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%2Fd49nunyokzdve67mv257.png" alt=" " width="603" height="415"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Power BI is key when it comes to decision making. It assists businesses make sense of data at hand and give them a leverage. It answers what and  why questions and gets you thinking of the next thing to do.  &lt;/p&gt;

</description>
      <category>analytics</category>
      <category>data</category>
      <category>microsoft</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Schemas and Data Modelling in Power BI</title>
      <dc:creator>SHARON CHEROCK</dc:creator>
      <pubDate>Sun, 01 Feb 2026 11:03:44 +0000</pubDate>
      <link>https://dev.to/shacherock/schemas-and-data-modelling-in-power-bi-2pdg</link>
      <guid>https://dev.to/shacherock/schemas-and-data-modelling-in-power-bi-2pdg</guid>
      <description>&lt;p&gt;Power BI has proven to be a resourceful tool when it comes to shaping data. Large data is made simple and easy to understand.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Data Modelling?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Data modelling in Power BI is organizing data and creating relationships  between different tables so that data works together correctly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Importance of data modelling&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;. It makes data easy to understand and be used.&lt;br&gt;
. Provides accurate results analysis&lt;br&gt;
. Reduces data duplication&lt;br&gt;
. Improves performance&lt;br&gt;
. Scalability - it can handle large volume of data with ease&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Levels of Data Abstraction&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Physical level - How data is stored&lt;/li&gt;
&lt;li&gt;Logical level - What data is stored&lt;/li&gt;
&lt;li&gt;View level - What the user sees.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;em&gt;Example of data abstraction in Power Bi:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;.Physical - sales table stored in database&lt;br&gt;
.Logical - sales connected to customer tables&lt;br&gt;
.View - sales dashboard showing charts&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Power BI data model organization&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Schema is how tables are arranged and connected.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Fact table&lt;/em&gt; - Contains measurable data or numbers. It enables summarization.&lt;br&gt;
&lt;em&gt;Dimension table&lt;/em&gt; - Contains descriptive data. It enables filtering and grouping.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Star Schema&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In simple terms, the structure of &lt;em&gt;Star&lt;/em&gt; schema is designed to have one central &lt;em&gt;Fact&lt;/em&gt; table and multiple &lt;em&gt;Dimension&lt;/em&gt; tables. This is the common type.&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%2Fogkxt5nmup4pcj27xowm.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%2Fogkxt5nmup4pcj27xowm.png" alt=" " width="558" height="382"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Advantages of Star Schema&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Accurate data analysis&lt;/li&gt;
&lt;li&gt;Easy to understand and use.&lt;/li&gt;
&lt;li&gt;Improves performance&lt;/li&gt;
&lt;li&gt;Reduction in data duplicates&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Snowflake Schema&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Its structure is designed such that the &lt;em&gt;Fact&lt;/em&gt; table is connected to &lt;em&gt;Dimension&lt;/em&gt; table and those &lt;em&gt;Dimension&lt;/em&gt; tables to other &lt;em&gt;Dimension&lt;/em&gt; tables.&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%2Fuu5dmuwzp881m89vhet5.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%2Fuu5dmuwzp881m89vhet5.png" alt=" " width="654" height="396"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Advantages of Snowflake Schema&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Reduces storage space&lt;/li&gt;
&lt;li&gt;Supports complex queries because of hierarchical data.&lt;/li&gt;
&lt;li&gt;Useful for large data sets.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Flat Schema&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here, data is stored in one &lt;em&gt;single&lt;/em&gt; table without dimensions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Advantages of Flat Schema&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Very convenient for small datasets thus easy to set up&lt;/li&gt;
&lt;li&gt;Easy to understand.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A well designed data model is important for data analysis. It helps in maintaining data integrity. Ensure that you import data, describe relationships and calculations needed on the data before modelling it. &lt;br&gt;
Happy learning and discovery!&lt;/p&gt;

</description>
      <category>analytics</category>
      <category>beginners</category>
      <category>data</category>
      <category>microsoft</category>
    </item>
    <item>
      <title>Simple steps in excel for Data Analysis</title>
      <dc:creator>SHARON CHEROCK</dc:creator>
      <pubDate>Sat, 31 Jan 2026 16:49:10 +0000</pubDate>
      <link>https://dev.to/shacherock/simple-steps-in-excel-for-data-analysis-2jcb</link>
      <guid>https://dev.to/shacherock/simple-steps-in-excel-for-data-analysis-2jcb</guid>
      <description>&lt;p&gt;I thought excel was a few classes learning then you are at it, but Alaaas! To my amazement, I keep meeting something new that excel can solve for me.&lt;br&gt;
Let us learn a few but critical functions excel can do for a simple data set.&lt;br&gt;
Always remember to save your work after every update to avoid loosing your work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What makes up an excel?&lt;/strong&gt;&lt;br&gt;
The basic parts of an excel are:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;em&gt;Rows&lt;/em&gt; - the vertical cells&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Columns&lt;/em&gt; - the horizontal cells&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Cell&lt;/em&gt; - intersection of row and a column&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Sheet bar&lt;/em&gt; - displays number of sheets.&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%2Fyvxm8o6jbjzq5cq3qjgj.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%2Fyvxm8o6jbjzq5cq3qjgj.png" alt="Parts of an excel" width="800" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data Types&lt;/strong&gt;&lt;br&gt;
This ensures that you input your data correctly.&lt;/p&gt;

&lt;p&gt;Let us explore these data types:&lt;/p&gt;

&lt;p&gt;.Number&lt;br&gt;
.Currency&lt;br&gt;
.Date&lt;br&gt;
.Text&lt;br&gt;
.Time&lt;br&gt;
.Percentage&lt;br&gt;
.Fraction&lt;/p&gt;

&lt;p&gt;Excel can used to analyze basic data in following ways;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Sorting and Filtering&lt;/em&gt;&lt;br&gt;
You can sort your data in different ways; smallest-biggest, largest-smallest or even customize your filter.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Data Cleaning&lt;/em&gt;&lt;br&gt;
. Removing duplicates&lt;br&gt;
Having repeated data can give wrong computations. So you ensure you remove any duplicates in your data.&lt;br&gt;
Select your column&amp;gt;Go to  &lt;code&gt;Data&lt;/code&gt; on the Tool Bar and Select  &lt;code&gt;Remove Duplicates&lt;/code&gt;, Click Okay&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Flash Fill.&lt;/em&gt;&lt;br&gt;
It includes several actions like;&lt;br&gt;
.splitting and combining texts &lt;br&gt;
For splitting data:&lt;br&gt;
Select the name column&amp;gt;On the Tool Bar go to &lt;code&gt;Data&lt;/code&gt;&amp;gt;Select &lt;code&gt;Text to Columns&lt;/code&gt;&amp;gt; Pick &lt;code&gt;Delimited&lt;/code&gt;click Next and choose &lt;code&gt;space/comma&lt;/code&gt;&amp;gt; Finish&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Formatting data&lt;/em&gt; for example to upper case, lower case&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;to upper case you use this formulae &lt;code&gt;=upper(f2:f10)&lt;/code&gt;&lt;br&gt;
to lower case you use this formulae &lt;code&gt;=lower(f2:f10)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Basic data calculations&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
 . Sum - &lt;code&gt;=sum(b2:b5)&lt;/code&gt; adds data in that  column&lt;br&gt;
 . average - &lt;code&gt;=average(b2:b5)&lt;/code&gt; finds the average&lt;br&gt;
 . min - &lt;code&gt;=min(b2:b5)&lt;/code&gt; finds the minimum number&lt;br&gt;
 . max - &lt;code&gt;=max(b2:b5)&lt;/code&gt; finds the maximum number&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Logical functions&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
 . IF/IFS - IF includes one multiple and IFS includes several multiples&lt;br&gt;
 . COUNTIF&lt;br&gt;
 . SUMIF&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pivot Tables&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Used to analyze and summarize large volumes of data.&lt;/p&gt;

&lt;p&gt;Select your data , on the Tools Bar, Select &lt;code&gt;Insert&lt;/code&gt;, Select &lt;code&gt;Pivot Table&lt;/code&gt;.&lt;br&gt;
you will have this window after the steps&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%2Fgypplin1lycvxzus3ko8.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%2Fgypplin1lycvxzus3ko8.png" alt=" " width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After selecting data you can select different calculations you need on the data in the Values area&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%2Fh6nlfnwlkpflodu8nhcy.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%2Fh6nlfnwlkpflodu8nhcy.png" alt=" " width="800" height="391"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Visualization&lt;/strong&gt;&lt;br&gt;
Transforms data into visuals using charts and graphs.&lt;br&gt;
It breaks down complex data into simple easy to understand data.&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%2Fpya80h3k32g4p2xum9r4.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%2Fpya80h3k32g4p2xum9r4.png" alt=" " width="800" height="246"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;By the time you are reading this i believe you must have learnt the basics of excel if not all. With continuous interaction with excel you will be able to learn much more. Happy learning and discovery!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>data</category>
      <category>microsoft</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Getting to know Git and Github</title>
      <dc:creator>SHARON CHEROCK</dc:creator>
      <pubDate>Wed, 28 Jan 2026 07:51:51 +0000</pubDate>
      <link>https://dev.to/shacherock/getting-to-know-git-and-github-3jbh</link>
      <guid>https://dev.to/shacherock/getting-to-know-git-and-github-3jbh</guid>
      <description>&lt;p&gt;&lt;strong&gt;Definitions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Git&lt;/em&gt; - A version control tool used to track changes in computer files.&lt;br&gt;
&lt;em&gt;Github&lt;/em&gt; - A web-based platform where you can store Git repositories allowing you to store, manage, track and share codes.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Installing Git and Gitbash&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Go to &lt;strong&gt;&lt;em&gt;&lt;a href="https://git-scm.com" rel="noopener noreferrer"&gt;https://git-scm.com&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;, install the latest version and make sure to choose the correct operating system. Continue to signing up.&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%2Fi196i1w35ewmrsu5e7as.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%2Fi196i1w35ewmrsu5e7as.png" alt=" " width="800" height="430"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;To access &lt;strong&gt;&lt;em&gt;Gitbash&lt;/em&gt;&lt;/strong&gt;, search on your computer and you will get a terminal.&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%2Fpo23bg7ohdzv5h2trn6x.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%2Fpo23bg7ohdzv5h2trn6x.png" alt=" " width="800" height="452"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Configuring On GitBash&lt;/strong&gt;
This is to ensure that Git recongnizes you. &lt;em&gt;Ensure the email you will use is the same email as the one you are signed on in Git&lt;/em&gt;.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git config --global user.name "name"
git config --global user.email "emailyours@email"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;You can check if your configurations have picked using this command&lt;/em&gt;&lt;br&gt;
&lt;code&gt;git config --list&lt;/code&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Generate SSH key and add an Agent&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;.Use this command to generate a key&lt;br&gt;
&lt;code&gt;ssh-keygen -t ed25519 -C "sharoncherock1@gmail.com"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;.Adding an agent&lt;br&gt;
&lt;code&gt;eval "$(ssh-agent -s)"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;4.&lt;strong&gt;Adding your Key to Github&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;.Copy your key&lt;br&gt;
.On Github, click on your profile, go to &lt;em&gt;Settings&lt;/em&gt;&lt;br&gt;
Scroll to &lt;em&gt;SSH and GPG Keys&lt;/em&gt;, tap on &lt;em&gt;New SSH Key&lt;/em&gt;&lt;br&gt;
.Name your key and paste the key in the box. Then tap the &lt;em&gt;Add SSH Key&lt;/em&gt;.&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%2F3vlb9dfdl9g19v1eotfm.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%2F3vlb9dfdl9g19v1eotfm.png" alt=" " width="800" height="347"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Git Push and Pull.
.First, create a repository.
On your Github account, tap on the &lt;em&gt;+&lt;/em&gt; sign and click on &lt;em&gt;New Repository&lt;/em&gt;.
Give it a name and make its visibility to your preference.
Click the &lt;em&gt;Add A README file.&lt;/em&gt;
Click on &lt;em&gt;Add Repository&lt;/em&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Commands used;&lt;br&gt;
&lt;code&gt;git push -u origin main&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The purpose is to link the local repository to remote repository&lt;/p&gt;

&lt;p&gt;&lt;code&gt;git pull origin main&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;In conclusion, just start, we will get better with practice. I hope this articles gives you some little insights and you can comment for more engagements and learning together.&lt;/p&gt;

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