<?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: Philipe Leandro</title>
    <description>The latest articles on DEV Community by Philipe Leandro (@philipeleandro).</description>
    <link>https://dev.to/philipeleandro</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F744245%2F5bef1109-195c-4fca-856a-2cacf9e4e1d6.png</url>
      <title>DEV Community: Philipe Leandro</title>
      <link>https://dev.to/philipeleandro</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/philipeleandro"/>
    <language>en</language>
    <item>
      <title>Git and Github guide for begineers</title>
      <dc:creator>Philipe Leandro</dc:creator>
      <pubDate>Sat, 06 Nov 2021 18:25:35 +0000</pubDate>
      <link>https://dev.to/philipeleandro/git-and-github-guide-for-begineers-56bh</link>
      <guid>https://dev.to/philipeleandro/git-and-github-guide-for-begineers-56bh</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;If you have no knowledge about git and github and for some reason you need to use them, I can help you with these steps:
1 - First, in your bash, if it's the first time you're using it, you must register an user and email with: 
    $ git config --global user.name YOUR_NAME
    $ git config --global user.email your_name@example.com
2 - Now, manipulating the paths of  your machine, you can set a folder to be a place to save your files;
3 - For being a regular folder, you must have to initialize it with this command:
    $ git init 
    That way, the bash will recognize it as an initialized folder;
4 - After you have made all you needs, like creating and modifying files, you can follow these commands to send your modified files
    to a repository:
    - first, you might use $ git status to verify the status files;
    - second, with $ git add . or $ git add file_name you can add your files modification;
    - next, if you want, you can verify the status with $ git status;
    - with $ git commit -m "message", they'll be commited and ready to be pushed to a repository.
5 - With a synchronized github account, you can use $ git push &amp;lt;remote_name&amp;gt; &amp;lt;branch_name&amp;gt; to send them.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Git and Github in 2 weeks </title>
      <dc:creator>Philipe Leandro</dc:creator>
      <pubDate>Wed, 03 Nov 2021 18:32:43 +0000</pubDate>
      <link>https://dev.to/philipeleandro/git-and-github-in-2-weeks-4b9i</link>
      <guid>https://dev.to/philipeleandro/git-and-github-in-2-weeks-4b9i</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; At least 2 weeks ago, I've started to study the git and github's concepts and I could realize how important it is. First 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;I've studied the initial steps in bash and how register the user, after that, I've learnt some basic commands to get familiar with this new world. Almost every day, I've practiced the commands in the bash and and studied the theoretical like the file's stages on bash and learning new commands. This little text, it's helping to fix what I've learnt and show you how could be simple study new subjects. &lt;/p&gt;

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