{"id":1346,"date":"2017-04-17T12:43:19","date_gmt":"2017-04-17T07:13:19","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=1346"},"modified":"2026-08-18T17:33:40","modified_gmt":"2026-08-18T12:03:40","slug":"working-git-commands-repositories","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/","title":{"rendered":"Introduction to Git and Common Git Commands"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>Git is a distributed version control system used to track and manage changes in source code and other project files. It allows developers and teams to work on projects collaboratively while maintaining a complete history of changes.<\/p>\n\n\n\n<p>Git can be used with remote repository platforms such as GitHub, GitLab, and Bitbucket, as well as private Git servers. This article provides an overview of commonly used Git commands, including cloning repositories, configuring Git, creating commits, pushing changes, managing branches, merging changes, viewing commit history, and reverting changes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before working with Git, make sure the following requirements are available:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A Linux, macOS, or Windows system with command-line access.<\/li>\n\n\n\n<li>Git installed on the system.<\/li>\n\n\n\n<li>Access to a Git repository hosted on GitHub, GitLab, Bitbucket, or a private Git server.<\/li>\n\n\n\n<li>Basic knowledge of Linux\/Unix command-line operations.<\/li>\n\n\n\n<li>A valid Git username and email address configured for commits.<\/li>\n\n\n\n<li>Appropriate permissions to clone, pull, and push changes to the remote repository.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">IMPLEMENTATION<\/h2>\n\n\n<h4>Git Repositories:<\/h4>\n<p>Git repositories are the location where you can store the all your project\/application code. It could be either on github account or your own private repositories such as gitlab or bitbucket account,etc.,<\/p>\n<h5>Clone repository:<\/h5>\n<p>Normally, there are two ways to clone the repositories. One is via http protocol or other way is to use SSH protocol.<\/p>\n<p>The below command is to clone the git repository to your local machine using https protocol.<\/p>\n<p><code>git clone https:\/\/gitrepourl\/repo.git<\/code><\/p>\n<p>This will create a directory called <em>repo<\/em> on your local machine.<\/p>\n<p>Incase, if we receive an error git command not found, we need to install git on the machine.<\/p>\n<p><code><\/code>For Ubuntu,<\/p>\n<p><code>apt-get install git<\/code><\/p>\n<p>For Centos,<\/p>\n<p><code>yum install git<\/code><\/p>\n<p>Now, we can setup git on the machine.<\/p>\n<p><code>git config --global user.name \"Your Name\"<\/code><\/p>\n<p><code>git config --global user.email \"your-username@domain.tld\"<\/code><\/p>\n<h5><code><\/code>Git Commands:<\/h5>\n<p>So far, we have cloned the repository and setup git. \u00a0Now, we are making changes the files and commit to the repository.<\/p>\n<p>We are creating a file test.html on your local machine and push it to git repository.<\/p>\n<p><code>vi test.html<\/code><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">Test Content<\/pre>\n<p>Now, add the file to git repository<\/p>\n<p><code>git add test.html<\/code><\/p>\n<p>Commit the file with your changes.<\/p>\n<p><code>git commit -m \"Adding test.html\"<\/code><\/p>\n<p>Add remote\u00a0repository to origin.<\/p>\n<p><code>git remote add origin\u00a0https:\/\/gitrepourl\/repo.git<\/code><\/p>\n<p>Push the changes to the remote origin.<\/p>\n<p><code>git push origin master<\/code><\/p>\n<p>Where<\/p>\n<p>Origin is remote URL<\/p>\n<p>master is a local repository.<\/p>\n<h5>Additional Information:<\/h5>\n<p>The above example is a simple one which explains on how to push a single file to git repo. In this section, we will explain few more git command which can help on how to use git effectively.<\/p>\n<p>To show recent changes, current commits,etc.,<\/p>\n<p><code>git status<\/code><\/p>\n<p>To view the remote repository.<\/p>\n<p><code>git remote -v<\/code><\/p>\n<p>To view the git log and commit IDs.<\/p>\n<p><code>git log<\/code><\/p>\n<p>To stash all the local changes<\/p>\n<p><code>git stash<\/code><\/p>\n<p><code><\/code>To create a new branch from master<\/p>\n<p><code>git branch name-of-branch<\/code><\/p>\n<p>To checkout to another git branch.<\/p>\n<p><code>git checkout -b name-of-branch<\/code><\/p>\n<p>To merge a branch to master. First Checkout to master branch and merge the branch<\/p>\n<p><code>git checkout master<\/code><\/p>\n<p><code>git merge name-of-branch<\/code><\/p>\n<p>To delete a file from git branch. First delete the file, commit and push the file.<\/p>\n<p><code>git rm test.html<\/code><\/p>\n<p><code>git commit -m \"Delete from git\"<\/code><\/p>\n<p><code>git push origin master<\/code><\/p>\n<p>To move to previously saved git commit.<\/p>\n<p><code>git reset --hard HEAD~1<\/code><\/p>\n<p>\u00a0<\/p>\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Git provides a reliable and efficient way to manage source code and track changes throughout the development lifecycle. Using commands such as <code>git clone<\/code>, <code>git add<\/code>, <code>git commit<\/code>, <code>git push<\/code>, <code>git status<\/code>, <code>git log<\/code>, <code>git stash<\/code>, and branch-related commands, developers can effectively manage their code and collaborate with others.<\/p>\n\n\n\n<p>The commands covered in this article provide a foundation for working with Git repositories. As you become more familiar with Git, additional concepts such as pull requests, rebasing, conflict resolution, tags, remote branches, and advanced Git workflows can be explored to improve development and collaboration.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Git is a distributed version control system used to track and manage changes in source code and other project files. It allows developers and teams to work on projects collaboratively while maintaining a complete history of changes. Git can be used with remote repository platforms such as GitHub, GitLab,&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Introduction to Git and Common Git Commands<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[323],"tags":[283,261,274],"class_list":{"0":"post-1346","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-git","7":"tag-git","8":"tag-linux","9":"tag-ubuntu","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction Git is a distributed version control system used to track and manage changes in source code and other project files. It allows developers and teams to work on projects collaboratively while maintaining a complete history of changes. Git can be used with remote repository platforms such as GitHub, GitLab,&hellip; Continue Reading Introduction to Git and Common Git Commands\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-17T07:13:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-18T12:03:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Introduction to Git and Common Git Commands\",\"datePublished\":\"2017-04-17T07:13:19+00:00\",\"dateModified\":\"2026-08-18T12:03:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/\"},\"wordCount\":556,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"git\",\"Linux\",\"ubuntu\"],\"articleSection\":[\"GIT\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-04-17T07:13:19+00:00\",\"dateModified\":\"2026-08-18T12:03:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/working-git-commands-repositories\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Introduction to Git and Common Git Commands\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Git is a distributed version control system used to track and manage changes in source code and other project files. It allows developers and teams to work on projects collaboratively while maintaining a complete history of changes. Git can be used with remote repository platforms such as GitHub, GitLab,&hellip; Continue Reading Introduction to Git and Common Git Commands","og_url":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-04-17T07:13:19+00:00","article_modified_time":"2026-08-18T12:03:40+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Introduction to Git and Common Git Commands","datePublished":"2017-04-17T07:13:19+00:00","dateModified":"2026-08-18T12:03:40+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/"},"wordCount":556,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["git","Linux","ubuntu"],"articleSection":["GIT"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/","url":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2017-04-17T07:13:19+00:00","dateModified":"2026-08-18T12:03:40+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/working-git-commands-repositories\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Introduction to Git and Common Git Commands"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-lI","jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1346","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=1346"}],"version-history":[{"count":2,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1346\/revisions"}],"predecessor-version":[{"id":10885,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1346\/revisions\/10885"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1346"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1346"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}