project manegment

This week I worked on defining my final project idea and started to getting used to the documentation process.

Software to download

git

What is Git?

Git is the most commonly used version control system. Git tracks the changes you make to files, so you have a record of what has been done, and you can revert to specific versions should you ever need to. Git also makes collaboration easier, allowing changes by multiple people to all be merged into one source.

Installing git

I chose to install git bash here for terminal usage and git GUI just to simplify the mission and

basic git bash commands

setup git

To set your global username/email configuration:

get started

Cloning my remote repository

  • step 3: In git bash command I used cd to navigate through folder to access git folder that I have created .
  • step 4: then I used git clone command to clone my repository through copied https URL
  • step 5:after that I jump into my cloned repository to make changes on it .
  • atom

    Atom is a text editor where you can open Markdown files found in the cloned directory and edit them. first time when I worked on this project I was write Markdown code then upload it just for testing but after several attempts, I found an amazing tool on atom if you press CTRL+SHIFT+m you can preview your changes before uploading them into remote directory so this tool will save your time for sure .

    for my page design i choose a pre built template from HTML5 UP then i edit this template to make my documentation bag ready

    down there I will explain what I edit exactly and some HTML basics

    Basic Tags

    • html Creates an HTML document
    • titlePuts name of the document in the title bar; whenbook maing pages, this is what is bookmarked

    Text Tags

    • h1 -->h6 Creates headlines -- H1=largest, H6=smallest
    • b Creates bold text
    • code Used to define source code, usually monospace
    • strongEmphasizes a word (usually processed in bold)

    Links

    • a href="URL" Creates a hyperlink to a Uniform Resource Locator

    Lists

    • ulCreates an unordered list
    • li Encompasses each list item

    Graphical elements

    • hrInserts a horizontal rule
    • img Adds image; it is a separate file located at the URL

    this is some of html tags and how to use it , personally, I use them mostly when I write my documentation, there is a lot more to explore in HTML and its capabilities so you can take a look at w3schools or you can use this HTML Cheat Sheet for time-saving after some practising