Git and Markdown

Git and Markdown

Git is a version control system to manage source code history.

Git is open-source licensed and maintained by Linux.

The most important thing in Github is maintaining a good README.md page because when someone visits your GitHub profile they are more likely to see your README.me page and to maintain it we use some markdown.

Heading

The '#' symbol is used to give headings

" # heading1 "

" ## heading2 "

" ### heading3 "

Italics and Bold

"_ Italics _"

" ** Bold ** "

Strikethrough

" Hello World "

[ Text to Show ]( Link )

[ Text to Show ]( Link "It show when hovering on link or know more" )

Image

![ alter text ]( link )

Highlighted

`Sudhanshu`

Horizontal Rule

" --- "

Table

| Syntax | Description |

| --- | --- |

| Header | Title |

| Paragraph | Text |

Quotes

" > "

List

ordered list

1 fruit

2 vegetable

unordered list

" - "

Git commands

git status - It is used to check the status

git add - It is used to add file

git commit - It is used to commit files

git push - It is used to push files