<?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: mzulfanw</title>
    <description>The latest articles on DEV Community by mzulfanw (@mzulfanw).</description>
    <link>https://dev.to/mzulfanw</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%2F848333%2F9ca12f74-861c-444d-825a-62a2a99720f4.png</url>
      <title>DEV Community: mzulfanw</title>
      <link>https://dev.to/mzulfanw</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mzulfanw"/>
    <language>en</language>
    <item>
      <title>How to undo your deleted local branch</title>
      <dc:creator>mzulfanw</dc:creator>
      <pubDate>Mon, 25 Apr 2022 16:33:04 +0000</pubDate>
      <link>https://dev.to/mzulfanw/how-to-undo-your-deleted-local-branch-59kc</link>
      <guid>https://dev.to/mzulfanw/how-to-undo-your-deleted-local-branch-59kc</guid>
      <description>&lt;p&gt;Heloo, back again with me. In this tutorial i will share about " How to undo your deleted local branch ". &lt;/p&gt;

&lt;h2&gt;
  
  
  Story
&lt;/h2&gt;

&lt;p&gt;maybe accidentally deleted the development or master branch in your local computer branch. &lt;/p&gt;

&lt;h4&gt;
  
  
  Step 1
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;type in your cmd or git bash &lt;code&gt;git reflog&lt;/code&gt; or you can see the sha after your deleted &lt;code&gt;ex: 112323&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--CcW0AB_F--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xvhxdwiy2bzcqucko6tk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--CcW0AB_F--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xvhxdwiy2bzcqucko6tk.png" alt="Image description" width="880" height="162"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;After that, you can type &lt;code&gt;git branch branchname sha&lt;/code&gt; &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--C1FwJ1tP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mwfpo7zibpp438zebqqu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--C1FwJ1tP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mwfpo7zibpp438zebqqu.png" alt="Image description" width="588" height="24"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;And tadaaa , your local branch has been restored 🎉&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;thanks for reading this article, you can connect with me in &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/in/mzulfanw/"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/mzulfanw"&gt;Github&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>git</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Vue Js 3 + Vite Tutorial 1 ( Installation )</title>
      <dc:creator>mzulfanw</dc:creator>
      <pubDate>Mon, 18 Apr 2022 15:57:24 +0000</pubDate>
      <link>https://dev.to/mzulfanw/vue-js-3-vite-tutorial-1-installation--499a</link>
      <guid>https://dev.to/mzulfanw/vue-js-3-vite-tutorial-1-installation--499a</guid>
      <description>&lt;h4&gt;
  
  
  Helooo peeps, in here i will give you some tutorial about Vue Js 3, before going to the tutorial, let me explain what is vue.
&lt;/h4&gt;

&lt;p&gt;Vue Js is a Framework for bulding Frontend apps, like a React or Angular. Vue js created by Evan You. IMO Vue js fairly easy compared to the others frameworks. If you want to know what applications are made by vue js, you can check &lt;a href="https://www.esparkinfo.com/blog/websites-built-with-vue-js.html"&gt;Here&lt;/a&gt;.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;you can go to &lt;a href="https://vitejs.dev/"&gt;Vite&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Scaffolding Your First Vite Project using npm or yarn &lt;code&gt;npm create vite@latest&lt;/code&gt; or &lt;code&gt;yarn create vite&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;After that it will showing prompt, you can choose anything framework, but in here we're using Vue Js&lt;/li&gt;
&lt;li&gt;Enjoy it your first vue installation &lt;/li&gt;
&lt;/ol&gt;

&lt;h5&gt;
  
  
  In the next article, we're gonna learn about vue js
&lt;/h5&gt;

</description>
      <category>javascript</category>
      <category>vue</category>
      <category>vite</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
