<?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: Codeziper</title>
    <description>The latest articles on DEV Community by Codeziper (@codeziper).</description>
    <link>https://dev.to/codeziper</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%2F1128804%2F8577a0eb-1ef9-4777-9b6c-3fb8ed441686.jpg</url>
      <title>DEV Community: Codeziper</title>
      <link>https://dev.to/codeziper</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/codeziper"/>
    <language>en</language>
    <item>
      <title>🔥 10 Git Commands Every Developer Should Know 👨🏻‍💻</title>
      <dc:creator>Codeziper</dc:creator>
      <pubDate>Tue, 01 Aug 2023 19:11:36 +0000</pubDate>
      <link>https://dev.to/codeziper/10-git-commands-every-developer-should-know-3j63</link>
      <guid>https://dev.to/codeziper/10-git-commands-every-developer-should-know-3j63</guid>
      <description>&lt;h2&gt;
  
  
  Git Commands 📢
&lt;/h2&gt;

&lt;p&gt;1.Create a new local repository&lt;br&gt;
&lt;/p&gt;

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

&lt;/div&gt;



&lt;p&gt;2.List new or unmodified 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 status
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;3.Stage all changed 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;p&gt;4.Stage a file&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 &amp;lt; File &amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;5.Commit previously staged changes&lt;br&gt;
&lt;/p&gt;

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

&lt;/div&gt;



&lt;p&gt;6.Switch to a branch and update&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git checkout &amp;lt; Branch Name &amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;7.Check the current branch&lt;br&gt;
&lt;/p&gt;

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

&lt;/div&gt;



&lt;p&gt;8.Fetch a remote version of a branch and update it locally.&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 &amp;lt; Remote &amp;gt; &amp;lt; Branch Name &amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;9.Push the committed changes to a remote repository.&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 &amp;lt; Remote &amp;gt; &amp;lt; Branch Name &amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;10.Merge the specified branch into the current working branch.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git merge &amp;lt; Branch Name &amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Help me out! 💡
&lt;/h2&gt;

&lt;p&gt;If you found this article helpful in providing a concise understanding of &lt;strong&gt;Git commands&lt;/strong&gt;, I would greatly appreciate it if you could show your support by giving it a ❤️. Your positive feedback encourages me to create more valuable content.&lt;br&gt;
And feel free to share your thoughts in the comments section below.!! 💬&lt;/p&gt;




&lt;p&gt;Thank you for your interest!😊&lt;br&gt;
Team &lt;a href="https://codeziper.com/blogs"&gt;Codeziper&lt;/a&gt; 🎉&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>opensource</category>
      <category>git</category>
      <category>codeziper</category>
    </item>
    <item>
      <title>WHAT ARE THE TYPES OF SCHEMA MARKEUP?</title>
      <dc:creator>Codeziper</dc:creator>
      <pubDate>Sun, 30 Jul 2023 11:14:11 +0000</pubDate>
      <link>https://dev.to/codeziper/what-are-the-types-of-schema-markeup-4i10</link>
      <guid>https://dev.to/codeziper/what-are-the-types-of-schema-markeup-4i10</guid>
      <description>&lt;p&gt;Here,&lt;br&gt;
Schema markup is used on websites to provide multiple types of data, entities, and relationships.&lt;/p&gt;

&lt;p&gt;Our Team Has Noted A Common Widely Used Schema Markup Type Shown Below:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Organization Schema&lt;/strong&gt;: Organization Schema is a type of schema markup that provides information about an organization's name, logo, website, contact information, and social media profiles.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Local Business Schema&lt;/strong&gt;: Local Business Schema is a type of schema markup that provides information about a local business. and that provides information about the business's name, address, phone number, hours of operation, website, and reviews.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Review Schema&lt;/strong&gt;: Review Schema is a type of schema markup that provides information about a review of a product, service, reviewer's name, date of the review, rating, or other item.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Website Schema&lt;/strong&gt;: Website Schema is a type of schema markup that provides information about the website's title, description, keywords, and author.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Article Schema&lt;/strong&gt;: Article Schema is a type of schema markup that provides information about an article or blog title, author, date published, keywords, and summary.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Product Schema&lt;/strong&gt;: Product Schema is a type of schema markup that provides information about the product's title, description, price, availability, reviews, and images.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You can read our blog about schema markup and also generate schema markup yourself.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Our tool about schema markup:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://codeziper.com/online-tools"&gt;https://codeziper.com/online-tools&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks &amp;amp; regards&lt;br&gt;
Team Codeziper&lt;/p&gt;

</description>
      <category>schema</category>
      <category>onlinetool</category>
      <category>marketing</category>
      <category>codeziper</category>
    </item>
    <item>
      <title>How to add schema markup to the website?</title>
      <dc:creator>Codeziper</dc:creator>
      <pubDate>Sat, 29 Jul 2023 08:08:31 +0000</pubDate>
      <link>https://dev.to/codeziper/how-to-add-schema-markup-to-the-website-4cej</link>
      <guid>https://dev.to/codeziper/how-to-add-schema-markup-to-the-website-4cej</guid>
      <description>&lt;p&gt;Here Few Steps To Add Schema Markup To The Website Manually.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Find The Space In The Website Source Code Where you Need To Place The Schema Code.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Generate The Schema Markup Code From &lt;a href="https://codeziper.com/online-tools"&gt;Codeziper Online Tool&lt;/a&gt; Or Other Space.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Validate The Schema Markup Code With Schema.Org&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Place The Related Schema Markup Code In The Website Source Code.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Thanks &amp;amp; regards&lt;br&gt;
Team Codeziper&lt;/p&gt;

</description>
      <category>schema</category>
      <category>marketing</category>
      <category>codeziper</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
