{"id":22561979,"url":"https://github.com/pradipece/github_git_practice","last_synced_at":"2026-04-16T08:31:06.230Z","repository":{"id":260956544,"uuid":"882821824","full_name":"pradipece/Github_Git_Practice","owner":"pradipece","description":"This repo is only for practice purposes that way, I can use the different commands and resource some new commands.","archived":false,"fork":false,"pushed_at":"2025-02-19T20:23:01.000Z","size":874,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-19T21:27:00.751Z","etag":null,"topics":["git","github","github-cloud-migrated","github-config","macos","markdown"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pradipece.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-03T21:01:54.000Z","updated_at":"2025-02-19T20:23:05.000Z","dependencies_parsed_at":"2024-11-03T21:28:17.885Z","dependency_job_id":"f8f655a1-22d1-4f09-932d-573d343723f8","html_url":"https://github.com/pradipece/Github_Git_Practice","commit_stats":null,"previous_names":["pradipece/github_git_practice"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pradipece%2FGithub_Git_Practice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pradipece%2FGithub_Git_Practice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pradipece%2FGithub_Git_Practice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pradipece%2FGithub_Git_Practice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pradipece","download_url":"https://codeload.github.com/pradipece/Github_Git_Practice/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246034229,"owners_count":20712851,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git","github","github-cloud-migrated","github-config","macos","markdown"],"created_at":"2024-12-07T22:11:07.381Z","updated_at":"2026-04-16T08:31:06.223Z","avatar_url":"https://github.com/pradipece.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git command: \n\n```sourceCode console\nInitial Git and GitHub Setup:\n\n  git init\n  git remote -v\n  git status\n  git add .\n  git commit -m \"commit message for the files\"\n  git branch -M main\n  git remote add origin [your origin]\n  git push -u origin main\n\nThen after setup in the GitHub repo:\n\n  git add .\n  git commit -m \"commit message for the files\"\n  git push -u origin main\n\n  __Connect with the GitHub repo from the local computer__\n\n  cd [folder]\n  git init\n  git remote add origin [repo URL]\n  git add .\n  git commit -m \"commit message for the files\"\n  git push -u origin main\n\n```\n\n## Comment\n\u003c!-- Markdown uses the HTML code for everything --\u003e\n## Normal text and new line\nNormally we can write in the README file\n## New line\n\u003cbr\u003e\nor \n1st line \u003cbr\u003e 2nd line\n\n## Horizontal rule\n\n\u003chr/\u003e\nor \n\n---\n\n## Heading\n\n# Heading\n## Heading\n### Heading\n#### Heading\n\n\n## Paragraph\n\n\u003cp\u003e For the use of the Paragraph HTML tags. I am Pradip Nath, I just completed my Master's from Sweden. \u003c/p\u003e\n\n## Italic\n\n\u003ci\u003e use for the italic \u003c/i\u003e\n\n_use for the markdown text Use only underline 1st and last._\n\n## Bold\n\n__use for the markdown text Use -- only undeline 1st and last.__\n\n## Strikethrough\n\n\u003cdel\u003euse html teg for strikethrough\u003c/del\u003e\n\n~~For markdown we use ~ tilda sign 1st and last~~ \n\n## Inline code block\n\n`This is used for the inline`  \n\n`\u003ch1\u003e Inline we use back tag \u003c/h1\u003e`\n\n```\n  \u003chtml\u003e\n    \u003chead\u003euse for the header\u003c/head\u003e\n      \u003cbody\u003e \n      use for the body \n      \u003c/body\u003e\n  \u003c/html\u003e \n ```\n\n## Multiple line code block\n\n```html\n  \u003chtml\u003e\n   \u003chead\u003euse for the header\u003c/head\u003e\n    \u003cbody\u003e \n        Above we can use language names such as HTML, CSS, javascript, Linux, Matlab, Python \n\n   \u003c/body\u003e\n  \u003c/html\u003e\n``` \n\n\n```javascript\n    document.write('Hello World, it will show the font in browser')\n\n    console.log('Hello World , This output show the console')\n```\n\n```python\n    print(\"Hello world!\")\n```\n\n## List\n\u003col\u003e\n    \u003cli\u003eThis is item1 \u003c/li\u003e\n    \u003cli\u003eThis is item2 \u003c/li\u003e\n    \u003cli\u003eThis is item3 \u003c/li\u003e\n    \u003cli\u003eThis is item4 \u003c/li\u003e\n\u003c/ol\u003e\n\n1. First item\n2. Second item\n3. Third item\n    1. Indented item\n    2. Indented item\n4. Fourth item\n\n## Unordered list\n\n- item1\n    - item2\n        - item3\n- item4\n item4\n\n\n## Link\n\n- Automatic link\n- Disable link\n\n##  Image\n\nFor the image tag, we will use HTML syntax \n\n\n## Emoji\n\nFor the Emoji we will browse the online link : \nhttps://emojipedia.org/\n\nonly copy and paste into the README file\n\n✨ sparkle\n\n✅ mark\n\n🪔  lamp\n\n⭐  Star\n\n## Table \nwe can use the HTML syntax\n\nMarkdown we use table format:\n\n| Fast Name | Last Name |\n| ---- | ---- |\n| Pradip | Nath |\n| Email: | pradipnathece@gmail.com |\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpradipece%2Fgithub_git_practice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpradipece%2Fgithub_git_practice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpradipece%2Fgithub_git_practice/lists"}