Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pradipece/github_git_practice
This repo is only for practice purposes that way, I can use the different commands and resource some new commands.
https://github.com/pradipece/github_git_practice
git github github-cloud-migrated github-config macos markdown
Last synced: about 1 month ago
JSON representation
This repo is only for practice purposes that way, I can use the different commands and resource some new commands.
- Host: GitHub
- URL: https://github.com/pradipece/github_git_practice
- Owner: pradipece
- Created: 2024-11-03T21:01:54.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-04T15:44:09.000Z (about 1 month ago)
- Last Synced: 2024-12-04T16:35:32.707Z (about 1 month ago)
- Topics: git, github, github-cloud-migrated, github-config, macos, markdown
- Language: HTML
- Homepage:
- Size: 849 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Git command:
```sourceCode console
Initial Git and GitHub Setup:git init
git remote -v
git status
git add .
git commit -m "commit message for the files"
git branch -M main
git remote add origin [your origin]
git push -u origin mainThen after setup in the GitHub repo:
git add .
git commit -m "commit message for the files"
git push -u origin main```
## Comment
## Normal text and new line
Normally we can write in the README file
## New line
or
1st line
2nd line## Horizontal rule
or---
## Heading
# Heading
## Heading
### Heading
#### Heading## Paragraph
For the use of the Paragraph HTML tags. I am Pradip Nath, I just completed my Master's from Sweden.
## Italic
use for the italic
_use for the markdown text Use only underline 1st and last._
## Bold
__use for the markdown text Use -- only undeline 1st and last.__
## Strikethrough
use html teg for strikethrough~~For markdown we use ~ tilda sign 1st and last~~
## Inline code block
`This is used for the inline`
`
Inline we use back tag
````
use for the header
use for the body
```## Multiple line code block
```html
use for the header
Above we can use language names such as HTML, CSS, javascript, Linux, Matlab, Python
``````javascript
console.log('Hello World')
``````python
print("Hello world!")
```## List
- This is item1
- This is item2
- This is item3
- This is item4
1. First item
2. Second item
3. Third item
1. Indented item
2. Indented item
4. Fourth item## Unordered list
- item1
- item2
- item3
- item4
item4## Link
- Automatic link
- Disable link## Image
For the image tag, we will use HTML syntax
## Emoji
For the Emoji we will browse the online link :
https://emojipedia.org/only copy and paste into the README file
✨ sparkle
✅ mark
🪔 lamp
⭐ Star
## Table
we can use the HTML syntaxMarkdown we use table format:
| Fast Name | Last Name |
| ---- | ---- |
| Pradip | Nath |
| Email: | [email protected] |