<?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: Issah Mudasir</title>
    <description>The latest articles on DEV Community by Issah Mudasir (@danladi123).</description>
    <link>https://dev.to/danladi123</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%2F144138%2Fcfafc491-60b0-40c2-8abe-cbcb6b32165e.jpeg</url>
      <title>DEV Community: Issah Mudasir</title>
      <link>https://dev.to/danladi123</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/danladi123"/>
    <language>en</language>
    <item>
      <title>Just Received my HactoberFest T-shirt </title>
      <dc:creator>Issah Mudasir</dc:creator>
      <pubDate>Thu, 23 Jan 2020 16:04:24 +0000</pubDate>
      <link>https://dev.to/danladi123/just-received-my-hactoberfest-t-shirt-ih7</link>
      <guid>https://dev.to/danladi123/just-received-my-hactoberfest-t-shirt-ih7</guid>
      <description>&lt;p&gt;I'm glad my shirt finally arrived in Ghana. Thanks to digital Ocean for the motivation they gave me towards learning git as well as how to contribute to open source submitting . It was fun and a good feeling.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pUPqR9vU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/put-link-to-image-here" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pUPqR9vU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/put-link-to-image-here" alt="Mudasir's  hacktoberfest T-shirt"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Hacktoberfest
&lt;/h1&gt;

&lt;h1&gt;
  
  
  Dev.to
&lt;/h1&gt;

</description>
    </item>
    <item>
      <title>Using Git the First Time</title>
      <dc:creator>Issah Mudasir</dc:creator>
      <pubDate>Sun, 10 Nov 2019 19:59:25 +0000</pubDate>
      <link>https://dev.to/danladi123/using-git-the-first-time-56mc</link>
      <guid>https://dev.to/danladi123/using-git-the-first-time-56mc</guid>
      <description>&lt;p&gt;This is a Continuation of Understanding Git, Github and Contributing to open Source Projects article. &lt;a href="https://dev.to/danladi123/understanding-git-github-and-contributing-to-open-source-projects-542l"&gt;You can read it Here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Beginning Check List:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;-Create a github account&lt;br&gt;
-Download the gitbash software &lt;br&gt;
-Configure your gitbash software with your full name and email&lt;br&gt;
-Create a Repository in github online&lt;br&gt;
-Clone the online repository to your PC&lt;/p&gt;

&lt;h2&gt;
  
  
  Further Explanation of Checklist:
&lt;/h2&gt;

&lt;p&gt;To get started you need to create a github account by Signing up &lt;a href="https://github.com/join?source=header-home"&gt;here&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;You also need the gitbash software installed on your PC . Download it &lt;a href="https://git-scm.com/downloads"&gt;here&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;&lt;em&gt;Make sure you install the gitbash software and configure it as well with Your Full name and Email. Using the Commands Below:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Git config --global user.name "your username here"&lt;br&gt;
Git config --global user.email "Your Email Here"&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Note: the above git commands should be typed in your gitbash software&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Now you need to create an online repository (Folder) from your github account See screenshot below :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--feM5U6wk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/7rzwo2rbkgwnhqipnyph.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--feM5U6wk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/7rzwo2rbkgwnhqipnyph.PNG" alt="Create Repo"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then clone a copy of it(The new Repo) offline by copying its link and typing the git code below in your git bash software. See screenshot below:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Hthpwn4B--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/x1yaw69jhvsyhylop0p2.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Hthpwn4B--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/x1yaw69jhvsyhylop0p2.PNG" alt="Copy repo link"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After Copying the link as shown in the image above, type the command:&lt;br&gt;
git clone &lt;em&gt;the_link_of_the_repository_here&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The above commands should be typed in the git bash command line&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;After successful clone to your PC. Check your default Github folder and you will see the new repository folder there.&lt;/p&gt;

&lt;p&gt;From now onward you can do all your work related to that project in that folder and push it to the online github repository with the help of some git commands.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Conclusion...&lt;/em&gt;&lt;br&gt;
At this point, i believe creating a repository and cloning it to your pc should be a simple task to do. &lt;/p&gt;

&lt;p&gt;I will continue this article in Part 3 where i will highlight some startup git commands with simple explanation that you can use to achieve a lot of things as far as github and open source contribution is concerned.&lt;/p&gt;

&lt;p&gt;If you face any issues or you will like to share your opinion on this article, feel free to post it below in the comments section.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Have a nice day....&lt;/em&gt; &lt;/p&gt;

</description>
      <category>github</category>
      <category>opensource</category>
      <category>git</category>
    </item>
    <item>
      <title>Understanding Git, Github and Contributing to open Source Projects </title>
      <dc:creator>Issah Mudasir</dc:creator>
      <pubDate>Tue, 29 Oct 2019 17:11:07 +0000</pubDate>
      <link>https://dev.to/danladi123/understanding-git-github-and-contributing-to-open-source-projects-542l</link>
      <guid>https://dev.to/danladi123/understanding-git-github-and-contributing-to-open-source-projects-542l</guid>
      <description>&lt;p&gt;&lt;em&gt;A beginners point of view...&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Initially I found it difficult learning git. The terms where a bit strange and confusing. Most of the tutorials I watched used the CLI (Command Line) to teach. I wondered how on earth will people be using terminal to do stuffs instead of a GUI. This was one of the reasons that made my journey to learning git quite rough. After several months of figuring out what exactly git was all about and what the hell will I want to use it as a beginner developer. I finally figured it out and will love to share my understanding and discovery with everyone out there.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Git / Github.
&lt;/h2&gt;

&lt;p&gt;Git/Github is a source control Management System used to manage and organize the entire development process giving you the opportunity to undo and redo changes that is made to your code. Consider Git/Gitbub as a similar process to the auto save or redo and undo feature in the MS word software or Google Document. You will realize that as you type,  the software is keeping a copy of your changes at every point in time. Thus making it possible for you to revert back changes made.&lt;/p&gt;

&lt;p&gt;Yes consider github as an advance system that provide you similar and more features. Let's say you playing a board game and you decide to try some risky moves but yet wouldn't want to loose track of your current board setting. You could simply take a snapshot of your board game setting so that after you try your risky move you can reverse back to previous state , without issues. Now , this and more is exactly what github helps you with.&lt;/p&gt;

&lt;p&gt;my write up is broken in two parts. I would talk about github and git in this first part then I will talk about the usage, commands, and how to make your first commit in the next part.&lt;/p&gt;

&lt;h2&gt;
  
  
  Git Or Github Whats the difference ?
&lt;/h2&gt;

&lt;p&gt;The difference between git and github is that, git is a local version of github working on your PC managing your project folders whilst github is the actual online repository where you can push your projects from your computer to a remote server using the git bash software on your PC. I'm sure you can see the difference between the two by now.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Should you learn the Git / Github System
&lt;/h2&gt;

&lt;p&gt;Whenever I am working on a software project and I get stuck at a point and want to share my work with a colleague to help out. All I will do is to zip the folder and send it over to him/her then he intends send it back to me after updates. This was a hectic process and I'm sure a lot of people have gone through this circumstance before. when I came across git/github I came to realise that I could share my work remotely and have my college clone a copy of my files and then push his changes back to my online folder (Repository). Now with github I can pull this changes , run it and decide whether I'll want to merge it to my original copy or not. As simply as that.&lt;/p&gt;

&lt;p&gt;I believe it is on The bases of the scenario stated above and more that github was created , Making it possible for two or more developers to work on a single project to achieve a great outcome.&lt;/p&gt;

&lt;p&gt;Thus, we can now proceed to learn how to start using git and contributing to other people's project. This will be captured in part two of this article to be realized soon.&lt;/p&gt;

&lt;p&gt;In the mean time you can share your understanding of github and if possible what motivated you to learn it.&lt;/p&gt;

&lt;p&gt;Peace....&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
