<?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: milan1750</title>
    <description>The latest articles on DEV Community by milan1750 (@milan1750).</description>
    <link>https://dev.to/milan1750</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%2F255643%2F9491175e-ab03-4d73-9f8c-531dbe7285b4.jpg</url>
      <title>DEV Community: milan1750</title>
      <link>https://dev.to/milan1750</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/milan1750"/>
    <language>en</language>
    <item>
      <title>Creating and Merging New Branch on GIT</title>
      <dc:creator>milan1750</dc:creator>
      <pubDate>Fri, 28 Feb 2020 10:19:35 +0000</pubDate>
      <link>https://dev.to/milan1750/creating-and-merging-new-branch-on-git-5f05</link>
      <guid>https://dev.to/milan1750/creating-and-merging-new-branch-on-git-5f05</guid>
      <description>&lt;h2&gt;
  
  
  List Branch
&lt;/h2&gt;

&lt;p&gt;$git branch&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;master&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Add new Branch
&lt;/h2&gt;

&lt;p&gt;$git branch new-branch&lt;/p&gt;

&lt;h2&gt;
  
  
  List Branch
&lt;/h2&gt;

&lt;p&gt;$git branch&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;master&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;new-branch&lt;/p&gt;

&lt;p&gt;Master is your current branch. Lets jump to new-branch&lt;/p&gt;

&lt;h2&gt;
  
  
  Checking out to new-branch
&lt;/h2&gt;

&lt;p&gt;$git checkout new-branch&lt;/p&gt;

&lt;h2&gt;
  
  
  List Branch
&lt;/h2&gt;

&lt;p&gt;$git branch&lt;br&gt;
master&lt;br&gt;
*new-branch&lt;/p&gt;

&lt;p&gt;Now you are in New-Branch. Lets quickly create a file&lt;br&gt;
$nano myfile.txt  //Wtite some stuff, Save with (Ctrl+S) and exit (Ctrl+z)&lt;/p&gt;

&lt;p&gt;Add to the git &lt;br&gt;
$git add myfile.txt&lt;br&gt;
$git commit -am "myfile added"&lt;br&gt;
$git push origin new-branch&lt;/p&gt;

&lt;p&gt;Merge to Master&lt;br&gt;
$git checkout master&lt;br&gt;
$git add -A&lt;br&gt;
$git merge new-branch&lt;br&gt;
$git commit -am "Merged"&lt;br&gt;
$git push origin master&lt;/p&gt;

&lt;p&gt;Good Luck&lt;/p&gt;

</description>
      <category>git</category>
      <category>branching</category>
      <category>merge</category>
    </item>
    <item>
      <title>Getting Started With Angular</title>
      <dc:creator>milan1750</dc:creator>
      <pubDate>Thu, 30 Jan 2020 12:08:06 +0000</pubDate>
      <link>https://dev.to/milan1750/getting-started-with-angular-43cd</link>
      <guid>https://dev.to/milan1750/getting-started-with-angular-43cd</guid>
      <description>&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Install Node&lt;br&gt;
&lt;a href="https://nodejs.org/en/"&gt;https://nodejs.org/en/&lt;/a&gt; &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Check node Version&lt;br&gt;
node -v&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Check npm Version&lt;br&gt;
npm -v&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Install Angular CLI&lt;br&gt;
npm install -g @angular/cli&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Create Angular App&lt;br&gt;
ng new my-app&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Navigate to my-app&lt;br&gt;
cd my-app&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Run App&lt;br&gt;
ng serve&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Open App in Browser&lt;br&gt;
&lt;a href="http://localhost:4200/"&gt;http://localhost:4200/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>angular</category>
      <category>node</category>
      <category>angular7</category>
    </item>
  </channel>
</rss>
