<?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: obasekisemi</title>
    <description>The latest articles on DEV Community by obasekisemi (@obasekisemi).</description>
    <link>https://dev.to/obasekisemi</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%2F808937%2Fa4c47493-0111-41b9-afd8-911727331b3b.jpeg</url>
      <title>DEV Community: obasekisemi</title>
      <link>https://dev.to/obasekisemi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/obasekisemi"/>
    <language>en</language>
    <item>
      <title>How I Created My Sign Up Page From Start To Finish</title>
      <dc:creator>obasekisemi</dc:creator>
      <pubDate>Tue, 15 Mar 2022 20:58:30 +0000</pubDate>
      <link>https://dev.to/obasekisemi/how-i-created-my-sign-up-page-from-start-to-finish-33i7</link>
      <guid>https://dev.to/obasekisemi/how-i-created-my-sign-up-page-from-start-to-finish-33i7</guid>
      <description>&lt;p&gt;Hey guys so today will be giving you step by step how I created my first sign up page.&lt;br&gt;
Please note I created this using HTML and CSS you can check my previous posts  to learn about Html and CSS.&lt;br&gt;
Firstly I created the HTML file and CSS  using  Vscode and saved them to a folder &lt;br&gt;
I started writing he Html code using Html element&lt;br&gt;
&lt;code&gt;&amp;lt;html&amp;gt; &amp;lt;/html&amp;gt;&lt;/code&gt; where all the header and body will be inserted.&lt;br&gt;
Then I created my header using the Header tag&lt;br&gt;
&lt;code&gt;&amp;lt;header&amp;gt;&amp;lt;/header&amp;gt;&lt;/code&gt;.&lt;br&gt;
The &lt;code&gt;&amp;lt;header&amp;gt;&lt;/code&gt; HTML element represents introductory content, typically a group of introductory or navigational aids. &lt;br&gt;
Under the header I have my title tag  &lt;code&gt;&amp;lt;title&amp;gt; &amp;lt;/title&amp;gt;&lt;/code&gt;which shows the which shows the tittle of the page &lt;br&gt;
Next step was to link my CSS to my HTML. CSS can be linked to HTML in 3 ways i.e inline,  internal and external . External method links css to html using this code  &lt;code&gt;&amp;lt;link rel="stylesheet" href="name of css file"&amp;gt;&lt;/code&gt;.  The picture below shows  pratical example&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;title&amp;gt;MY Login Page &amp;lt;/title&amp;gt;
        &amp;lt;link rel="stylesheet" href="mainloginstyles.css"&amp;gt;

    &amp;lt;/head&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The next step was to create the body of the Html file with the body tag&lt;code&gt;&amp;lt;body&amp;gt; &amp;lt;/body&amp;gt;&lt;/code&gt;.  And create a&lt;code&gt;&amp;lt;div &amp;gt;&lt;/code&gt;tag which contains the login page and another div tag which contains the form. As a "pure" container, the&lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt; element does not inherently represent anything. Instead, it's used to group content so it can be easily styled using the class or id attributes.&lt;br&gt;
The input tags and place holder tags are used. The placeholder attribute specifies a short hint that describes the expected value of an input field (e.g. a sample value or a short description of the expected format).&lt;br&gt;
The short hint is displayed in the input field before the user enters a value.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;body&amp;gt;
        &amp;lt;div class="login-page"&amp;gt;
        &amp;lt;div class="form"&amp;gt;
            &amp;lt;form class="register-form"&amp;gt;
             &amp;lt;input type="text" placeholder=" user name"/&amp;gt;   
             &amp;lt;input type="text" placeholder="password"/&amp;gt;   
             &amp;lt;input type="text" placeholder="email id"/&amp;gt;   
            &amp;lt;button&amp;gt;Create&amp;lt;/button&amp;gt;
            &amp;lt;p class="message"&amp;gt;Forgot Password?&amp;lt;/p&amp;gt;
            &amp;lt;/form&amp;gt;


        &amp;lt;/div&amp;gt;   
        &amp;lt;/div&amp;gt;



    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then I also created a button using the &lt;code&gt;&amp;lt;button&amp;gt;&amp;lt;/button&amp;gt;&lt;/code&gt; tag&lt;br&gt;
After writing the HTML code I moved on to the css  to style  the different elements I created using HTML&lt;br&gt;
The class selector was used as I was styling group of elements used the type selector for body of the page&lt;br&gt;
The body was styled as follows&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
body{
    background-image: url(my\ new\ back);
    height: 20vh;
    background-size: cover ;
    background-position:center;
    background-repeat: no-repeat;

}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Image used was downloaded and saved to the html file folder , the height was specified to be 20vh, back ground size will be cover meaning the dimension of the image will cover the screen  while back ground position is at the top&lt;br&gt;
The next step I took was to style the login page element&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.login-page{
    width: 360px;
    padding: 10% 0 0;
    margin: auto;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The CSS padding properties are used to generate space around an element's content, inside of any defined borders&lt;br&gt;
The next step was to style the form page&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.form{
    position: relative;
    z-index: 1;
    background: #ffffff;
    max-width: 360px;
    margin:0 auto 100px;
    padding: 45px;
    text-align: center;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This code describes the position of the form, background colour etc.&lt;br&gt;
The z-index property determines the stack level of an HTML element. The “stack level” refers to the element's position on the Z axis (as opposed to the X axis or Y axis). A higher value means the element will be closer to the top of the stacking order.&lt;br&gt;
The next step is styling button and form inputs. The font family, background  color of the form was styled as shown below&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
.form input{
    font-family:'Courier New', Courier, monospace;
    outline: 1;
    background: rgba(239, 243, 243, 0.952);
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: medium;
}


.form button{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    outline: 0%;
    background: #4c56af;
    width: 100%;
    border: 0;
    padding: 15Px;
    color:#ffffff;
    font-size: medium;
    cursor: pointer;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The final page looks like this&lt;/p&gt;

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

</description>
    </item>
    <item>
      <title>INTRODUCTION TO CSS</title>
      <dc:creator>obasekisemi</dc:creator>
      <pubDate>Sun, 06 Mar 2022 22:42:46 +0000</pubDate>
      <link>https://dev.to/obasekisemi/introduction-to-css-13h9</link>
      <guid>https://dev.to/obasekisemi/introduction-to-css-13h9</guid>
      <description>&lt;p&gt;CSS (Cascading Style Sheets) is a style sheet language for expressing how a document created in a markup language like HTML looks.&lt;br&gt;
CSS is a stylesheet language that allows you to separate presentation from content, including layout, colors, and fonts.&lt;br&gt;
This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple web pages to share formatting by specifying the relevant CSS in a separate.css file, reducing complexity and repetition in the structural content, and enable the.css file to be cached to improve page load speed between the pages that share the file and its formatting.&lt;br&gt;
Selectors are used in CSS to target HTML components that we want to customize on our web pages. CSS selectors come in a range of shapes and sizes, providing for fine-grained precision when styling elements.&lt;/p&gt;

&lt;h3&gt;
  
  
  SELECTOR
&lt;/h3&gt;

&lt;p&gt;The first portion of a CSS Rule is a CSS selector. It's a set of items and words that tells the browser which HTML elements should be chosen to have the CSS property values from the rule applied to them.&lt;br&gt;
The subject of the selector refers to the element or items that are selected by the selector.&lt;/p&gt;

&lt;h3&gt;
  
  
  PSUEDO SELECTOR
&lt;/h3&gt;

&lt;p&gt;Pseudo-classes are what they sound like.&lt;br&gt;
A pseudo-class is used to define an element's particular status.&lt;br&gt;
It can, for example, be used to:&lt;br&gt;
When a user hovers their mouse over an element, it is styled.&lt;br&gt;
Visited and unvisited links are styled differently.&lt;br&gt;
When an element receives a lot of attention, it's time to style it.&lt;br&gt;
Examples of Psuedo Classes include Dynamic Pseudo-classes i.e link, visited, hover, active and focus. Pseudo-classes for UI elements: enabled, disabled ,checked&lt;/p&gt;

&lt;h2&gt;
  
  
  Shorthand CSS properties
&lt;/h2&gt;

&lt;p&gt;CSS shorthand properties allow you to set the values of numerous other CSS properties at the same time. You can save time and energy by writing more brief (and frequently more readable) style sheets by using a shorthand attribute.&lt;br&gt;
Shorthand properties are defined in the CSS specification to gather together the definitions of similar properties that function on the same subject. For example, the CSS background property is a shortcut for background-color, background-image, background-repeat, and background-position. Similarly, the shorthand font may be used to specify the most common font-related characteristics, and the margin shorthand can be used to define the different margins around a box.&lt;br&gt;
Edge cases are tricky.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>                                      Relative Path and Absolute Path</title>
      <dc:creator>obasekisemi</dc:creator>
      <pubDate>Wed, 02 Mar 2022 11:39:27 +0000</pubDate>
      <link>https://dev.to/obasekisemi/relative-path-and-absolute-path-l6k</link>
      <guid>https://dev.to/obasekisemi/relative-path-and-absolute-path-l6k</guid>
      <description>&lt;p&gt;Alternatively known as the pathname, the current path or path is the complete location or name of where a computer, file, device, or web page is located.&lt;br&gt;
An absolute path is a path that describes the location of a file or folder regardless of the current working directory; in fact, it is relative to the root directory. It contains the complete location of a file or directory.&lt;br&gt;
Absolute paths contain all the relevant information to find the resources indicated by an absolute URL. An absolute path must be used to refer to websites that are on a domain other than your home domain.&lt;br&gt;
A relative path is a path that describes the location of a file or folder in relative to the current working directory. It can be best used to refer to websites that are located on the same domain, ideally on certain sections of websites in which the documents never change relationships to each other.&lt;br&gt;
Unlike absolute paths, relative paths contain information that is only relative to the current document within the same website which avoids the need to provide a full absolute path. In simple words, relative path refers to a path relative to the location of the current webpage.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>path</category>
    </item>
    <item>
      <title>INTRODUCTION TO COLOUR CODE IN HTML AND CSS</title>
      <dc:creator>obasekisemi</dc:creator>
      <pubDate>Wed, 16 Feb 2022 08:52:50 +0000</pubDate>
      <link>https://dev.to/obasekisemi/introduction-to-colour-code-in-html-and-css-4n0b</link>
      <guid>https://dev.to/obasekisemi/introduction-to-colour-code-in-html-and-css-4n0b</guid>
      <description>&lt;p&gt;Color is the property possessed by an object of producing different sensations on the eye as a result of the way it reflects or emits light.&lt;/p&gt;

&lt;p&gt;HTML Color Codes are a way to represent colors in a way that a computer can understand and display. Hex codes are the most often used color codes. Hex codes are three-byte hexadecimal integers (consisting of six variables) that contain a pair of characters that reflect the intensity of red, green, and blue in the color.&lt;/p&gt;

&lt;p&gt;The sign "#" is followed by six alphabets or numerals in each Hex color code. The hexadecimal system is used to represent numbers. There are a total of 1,67,77,216 color combinations to choose from. The lowest color intensity is represented by the 00 value range, while the highest color intensity is represented by the FF value range.&lt;/p&gt;

&lt;p&gt;Meaning of a Hex code:&lt;br&gt;
• The 1st and 2nd variable in Hex color code represents the intensity of red color.&lt;br&gt;
• The 3rd and 4th variable represents the intensity of green.&lt;br&gt;
• The 5th and 6th variable represents the intensity of blue.&lt;br&gt;
• By combining the intensities of red, green, and blue almost any color can be made.&lt;/p&gt;

&lt;h4&gt;
  
  
  Note
&lt;/h4&gt;

&lt;p&gt;The white color is a mixture of the three primary colors at full intensity representing the Hex color code #FFFFFF.&lt;/p&gt;

&lt;p&gt;The black color is a mixture of the three primary colors at the lowest intensity representing the color code #000000.&lt;/p&gt;

&lt;p&gt;These color codes can be used to change the color of a web page's background, text, and tables. They can also use photo editing apps like Adobe Photoshop to reference specific hues.&lt;/p&gt;

&lt;h3&gt;
  
  
  MAJOR HEXADECIMAL COLOUR CODES
&lt;/h3&gt;

&lt;p&gt;Some of the most frequent color names and codes are shown below. You can also use the color name with these colors. You could, for example, use "red" instead of "#FF0000" in HTML tags and CSS that employ color codes.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzo3yjz0frkxsqw27kn2d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzo3yjz0frkxsqw27kn2d.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  References
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://www.geeksforgeeks.org/html-hex-color-codes/" rel="noopener noreferrer"&gt;https://www.geeksforgeeks.org/html-hex-color-codes/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.computerhope.com/htmcolor.htm#major-color-codes" rel="noopener noreferrer"&gt;https://www.computerhope.com/htmcolor.htm#major-color-codes&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.educba.com" rel="noopener noreferrer"&gt;https://www.educba.com&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introduction to Character Code</title>
      <dc:creator>obasekisemi</dc:creator>
      <pubDate>Wed, 09 Feb 2022 01:27:01 +0000</pubDate>
      <link>https://dev.to/obasekisemi/introduction-to-character-code-2doe</link>
      <guid>https://dev.to/obasekisemi/introduction-to-character-code-2doe</guid>
      <description>&lt;h3&gt;
  
  
  CHARSET
&lt;/h3&gt;

&lt;p&gt;A character set refers to the composite number of different characters that are being used and supported by a computer software and hardware. It consists of codes, bit pattern or natural numbers used in defining some particular character. &lt;/p&gt;

&lt;p&gt;A character set may also be referred to as character map, charset or character code &lt;/p&gt;

&lt;p&gt;A character set is created through a process known as encoding i.e. each character is assigned with a unique code or value. &lt;/p&gt;

&lt;p&gt;ASCII characters set is one of the most popular character sets used by general computers to display text or numbers on computer screen &lt;/p&gt;

&lt;h3&gt;
  
  
  ASCII
&lt;/h3&gt;

&lt;p&gt;ASCII is an abbreviation of American Standard Code For Information Interchange, a standard data-transmission code that is used by smaller and less-powerful computers to represent both textual data (letters, numbers, and punctuation marks) and noninput-device commands (control characters).&lt;br&gt;
It is a  character encoding that uses numeric codes to represent characters. &lt;/p&gt;

&lt;h4&gt;
  
  
  Standard ASCII
&lt;/h4&gt;

&lt;p&gt;Standard ASCII can represent 128 characters. It uses 7 bits to represent each character since the first bit of the byte is always 0. For Example, a capital "T" is represented by 84, or 01010100 in binary. A lowercase "t" is represented by 116 or 01110100 in binary. For example, the Escape key (ESC) is 27 in ASCII and the Delete key (DEL) is 127. &lt;/p&gt;

&lt;h3&gt;
  
  
  UNICODE
&lt;/h3&gt;

&lt;p&gt;Unicode is a universal character encoding standard that assigns a code to every character and symbol in every language in the world. Since no other encoding standard supports all languages, Unicode is the only encoding standard that ensures that you can retrieve or combine data using any combination of languages&lt;/p&gt;

&lt;h3&gt;
  
  
  REFERENCES
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://techterms.com/definition/ascii"&gt;https://techterms.com/definition/ascii&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.techopedia.com/definition/941/character-set"&gt;https://www.techopedia.com/definition/941/character-set&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Git, Github and its use for collaboration</title>
      <dc:creator>obasekisemi</dc:creator>
      <pubDate>Fri, 04 Feb 2022 21:50:30 +0000</pubDate>
      <link>https://dev.to/obasekisemi/git-github-and-its-use-for-collaboration-5c7a</link>
      <guid>https://dev.to/obasekisemi/git-github-and-its-use-for-collaboration-5c7a</guid>
      <description>&lt;p&gt;&lt;strong&gt;Git&lt;/strong&gt; is software for tracking changes in any set of files, usually used for coordinating work among programmers developing source code during software development. Its aims to achieve speed, data integrity, and support for distributed, non-linear workflows (thousands of parallel branches running on different systems).&lt;br&gt;
Git was created by Linus Torvalds 17 years ago (2005) for development of the Linux kernel, with other kernel developers contributing to its initial development.  Junio Hamano has been the core maintainer after Git was created. &lt;br&gt;
Like other distributed version control systems, and unlike most client–server systems, every Git directory on every computer is a full-fledged repository with complete history and full version-tracking abilities, independent of network access or a central server.&lt;br&gt;
Well just so you know a repository contains all  of your project's files and each file's revision history. You can discuss and manage your project's work within the repository and this helps in collaboration when working with group of people. &lt;br&gt;
Git has two data structures: a mutable index (also called stage or cache) that caches information about the working directory and the next revision to be committed; and an immutable, append-only object database.&lt;br&gt;
 Data structure is a data organization, management, and storage format that enables efficient access and modification&lt;/p&gt;

&lt;p&gt;The object database contains five types of objects:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Blob (binary large object) is the content of a file.&lt;/li&gt;
&lt;li&gt;Tree object is the equivalent of a directory.&lt;/li&gt;
&lt;li&gt;Commit object links tree objects together into history&lt;/li&gt;
&lt;li&gt;Tag object is a container that contains a reference to another 
object and can hold added meta-data related to another object.&lt;/li&gt;
&lt;li&gt;Packfile object is a zlib version compressed of various other objects for compactness and ease of transport over network protocols.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now we know that Git is a version control system, similar but better than the many alternatives available. So, what makes &lt;strong&gt;GitHub&lt;/strong&gt; so special? Git is a command-line tool, but the center around which all things involving Git revolve is the hub—GitHub.com—where developers store their projects and network with likeminded people&lt;br&gt;
Github is &lt;strong&gt;collaborative&lt;/strong&gt; tool because user can create a &lt;strong&gt;repository&lt;/strong&gt; (usually abbreviated to “repo”) is a location where all the files for a particular project are stored. Each project has its own repo, and you can access it with a unique URL.&lt;br&gt;
If you find a project on GitHub that you’d like to contribute to, you can fork the repo, make the changes you’d like, and release the revised project as a new repo.&lt;br&gt;
&lt;strong&gt;Forking&lt;/strong&gt; is when you create a new project based off  of another project that already exists. When you have forked a repository, made a great revision to the project, and want it to be recognized by the original developers—maybe even included in the official project/repository. You can do so by creating a &lt;strong&gt;pull request&lt;/strong&gt;.&lt;br&gt;
When multiple people collaborate on a project, it’s hard to keep track revisions—who changed what, when, and where those files are stored. GitHub takes care of this problem by keeping track of all the changes that have been pushed to the repository.&lt;br&gt;
Each user on GitHub has their own profile that acts like a resume of sorts, showing your past work and contributions to other projects via pull requests. Project revisions can be discussed publicly, so a mass of experts can contribute knowledge and **collaborate **to advance a project forward.&lt;/p&gt;

&lt;h4&gt;
  
  
  REFERENCES
&lt;/h4&gt;

&lt;p&gt;(&lt;a href="https://docs.github.com/en/repositories/creating-and-managing-repositories/about-repositories"&gt;https://docs.github.com/en/repositories/creating-and-managing-repositories/about-repositories&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;(&lt;a href="https://www.howtogeek.com/180167/htg-explains-what-is-github-and-what-do-geeks-use-it-for/"&gt;https://www.howtogeek.com/180167/htg-explains-what-is-github-and-what-do-geeks-use-it-for/&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;(&lt;a href="https://en.wikipedia.org/wiki/Git"&gt;https://en.wikipedia.org/wiki/Git&lt;/a&gt;)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introduction to Git Branching and Standup</title>
      <dc:creator>obasekisemi</dc:creator>
      <pubDate>Fri, 04 Feb 2022 08:18:11 +0000</pubDate>
      <link>https://dev.to/obasekisemi/introduction-to-git-branching-and-standup-a18</link>
      <guid>https://dev.to/obasekisemi/introduction-to-git-branching-and-standup-a18</guid>
      <description>&lt;h4&gt;
  
  
  GIT BRANCHING
&lt;/h4&gt;

&lt;p&gt;Git branching allows developers to create a copy of the original code, fix bugs on the original code or add a specific feature. This feature is what differentiates Git from all other source code management tools.&lt;br&gt;
Git basically stores data as a series of snapshot&lt;br&gt;
The main branch is created when you initialize the Git inn it command&lt;br&gt;
What happens when you create a new branch? Well, it creates a new pointer for you to move around. Let’s say you want to create a new branch called testing. You do this with the git branch command:&lt;br&gt;
 git branch testing&lt;/p&gt;

&lt;p&gt;Git knows the branch you are currently on by keeping by keeping a special pointer called HEAD.&lt;br&gt;
In Git, it is a pointer to the local branch you’re currently on. Even you’re still on master. The git branch command only created a new branch — it didn’t switch to that branch.&lt;br&gt;
To switch to an existing branch, you run the git checkout command. Let’s switch to the new testing branch:&lt;br&gt;
$ git checkout testing&lt;br&gt;
This moves HEAD to point to the testing branch.&lt;/p&gt;

&lt;h4&gt;
  
  
  STANDUP
&lt;/h4&gt;

&lt;p&gt;In agile software development, a stand-up is a daily progress meeting, traditionally held within a development area. Business customers may attend to gathering information. Stand-ups are sometimes referred to as "daily scrums."&lt;br&gt;
The term "standup" is derived from the way it is run all attendees must remain standing to keep it short and the team engaged.&lt;br&gt;
Git standup is an open-source tool that helps you to track  and monitor what you have been working on and what your team has been working on. It comes with various options that you can play with it. It aids collaboration and errors can be minimized with this method&lt;/p&gt;

&lt;h5&gt;
  
  
  References
&lt;/h5&gt;

&lt;p&gt;(&lt;a href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell"&gt;https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell&lt;/a&gt;)&lt;br&gt;
(&lt;a href="https://levelup.gitconnected.com/how-to-use-git-as-a-standup-tool"&gt;https://levelup.gitconnected.com/how-to-use-git-as-a-standup-tool&lt;/a&gt;)&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
