{"id":11660,"date":"2025-11-27T10:59:17","date_gmt":"2025-11-27T05:29:17","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=11660"},"modified":"2025-11-27T11:38:54","modified_gmt":"2025-11-27T06:08:54","slug":"easy-way-to-configure-git-on-linux-server","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/easy-way-to-configure-git-on-linux-server","title":{"rendered":"Easy Way to Configure Git on Linux Server"},"content":{"rendered":"\n<p>Git is a distributed version control system that allows multiple developers to work on a project at the same time without interfering with each other\u2019s work. To manage your workflow effectively, you can configure Git for optimal source code management, making it one of the most widely used version control systems.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"402\" src=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/11\/Git-on-a-Linux-Server-768x402-1.jpg\" alt=\"Easy Way to Configure Git on Linux Server\" class=\"wp-image-11662\" srcset=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/11\/Git-on-a-Linux-Server-768x402-1.jpg 768w, https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/11\/Git-on-a-Linux-Server-768x402-1-150x79.jpg 150w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/><\/figure>\n\n\n\n<p>Configuring Git on a Linux server allows you to create and manage repositories, collaborate with other developers, and track changes to your code efficiently.<\/p>\n\n\n\n<p>In this guide, we will walk you through the steps to install and configure Git on a Linux server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p>Before you start configuring Git on your Linux server, ensure the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Linux Distribution<\/strong>: Git can be installed on most Linux distributions like Ubuntu, CentOS, Debian, and RHEL.<\/li>\n\n\n\n<li><strong>Root Access<\/strong>: You will need root or sudo privileges to install Git and configure system settings.<\/li>\n\n\n\n<li><strong>Basic Knowledge of Linux Commands<\/strong>: Familiarity with the terminal and basic Linux commands will help you navigate the system and configure Git effectively.<\/li>\n<\/ul>\n\n\n\n<p>Once you have these prerequisites, you\u2019re ready to install and configure Git on your Linux server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"configure-git-on-a-linux-server\"><strong>Configure Git on a Linux Server<\/strong><\/h2>\n\n\n\n<p>To effectively manage code on your Linux server, you need to configure Git properly. This setup enables version control, collaborative development, and efficient tracking of code changes, ensuring smooth project management across distributed teams.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-1-install-git\"><strong>Step 1: Install Git<\/strong><\/h3>\n\n\n\n<p>Git is available in the default package repositories of most Linux distributions. You can&nbsp;<a href=\"https:\/\/web.archive.org\/web\/20250809084736\/https:\/\/www.youstable.com\/blog\/install-git-on-linux\/\">install Git<\/a>&nbsp;using the package manager for your Linux distribution.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"install-git-on-ubuntu-debian\"><strong>Install Git on Ubuntu\/Debian<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Update your system<\/strong>:<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo apt update\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Install Git<\/strong>:<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo apt install git\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Verify Installation<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>After installation, you can verify that Git has been successfully installed by checking its version:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit --version\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li>You should see output similar to:<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit version 2.25.1\n<\/pre><\/div>\n\n\n<h4 class=\"wp-block-heading\" id=\"install-git-on-centos-rhel\"><strong>Install Git on CentOS\/RHEL<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Install Git using\u00a0<a href=\"https:\/\/web.archive.org\/web\/20250809084736\/https:\/\/www.youstable.com\/blog\/configure-yum-on-linux\/\">YUM<\/a><\/strong>:<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo yum install git\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Verify Installation<\/strong>: Check the installed version of Git:<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit --version\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"step-2-configure-git-user-information\"><strong>Step 2: Configure Git User Information<\/strong><\/h3>\n\n\n\n<p>Before using Git, you need to configure your user information. This includes your name and email address, which will be associated with your commits.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Set Your Username<\/strong>:<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit config --global user.name &quot;Your Name&quot;\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Set Your Email Address<\/strong>:<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit config --global user.email &quot;your.email@example.com&quot;\n<\/pre><\/div>\n\n\n<p>These configurations will be used for all repositories on your system. You can always override these settings on a per-repository basis if needed.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Verify Your Configuration<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>To verify that Git has been configured with the correct user information, run:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit config --list\n<\/pre><\/div>\n\n\n<p>This will display all Git configurations, including the&nbsp;<code>user.name<\/code>&nbsp;and&nbsp;<code>user.email<\/code>&nbsp;you just set.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-3-set-up-ssh-keys\"><strong>Step 3: Set Up SSH Keys<\/strong><\/h3>\n\n\n\n<p>Using SSH keys is a secure way to authenticate with remote Git repositories, such as GitHub,&nbsp;<a href=\"https:\/\/web.archive.org\/web\/20250809084736\/https:\/\/about.gitlab.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">GitLab<\/a>, or Bitbucket.&nbsp;<a href=\"https:\/\/web.archive.org\/web\/20250809084736\/https:\/\/www.youstable.com\/blog\/configure-ssh-on-linux\/\">Setting up SSH<\/a>&nbsp;keys allows you to push and pull from repositories without needing to enter your username and password each time.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"generate-an-ssh-key-pair\"><strong>Generate an SSH Key Pair<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Generate the SSH key<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>Run the following command and follow the prompts:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nssh-keygen -t rsa -b 4096 -C &quot;your.email@example.com&quot;\n<\/pre><\/div>\n\n\n<p>You will be prompted to enter a file in which to save the key. Press&nbsp;<strong>Enter<\/strong>&nbsp;to use the default location (<code>~\/.ssh\/id_rsa<\/code>).<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Add the SSH Key to the SSH Agent<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>Start the SSH agent:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\neval &quot;$(ssh-agent -s)&quot;\n<\/pre><\/div>\n\n\n<p>Add the SSH private key to the agent:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nssh-add ~\/.ssh\/id_rsa\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Add SSH Public Key to Git Server<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>Copy the public key to your clipboard:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ncat ~\/.ssh\/id_rsa.pub\n<\/pre><\/div>\n\n\n<p>Then, go to the&nbsp;<strong>SSH Keys<\/strong>&nbsp;section of your Git hosting service (such as GitHub, GitLab, or Bitbucket) and add your SSH public key there.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"test-ssh-connection\"><strong>Test SSH Connection<\/strong><\/h4>\n\n\n\n<p>To test if your SSH setup is working, run:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nssh -T git@github.com\n<\/pre><\/div>\n\n\n<p>Replace&nbsp;<code>github.com<\/code>&nbsp;with the Git server you are using (e.g.,&nbsp;<code>gitlab.com<\/code>&nbsp;or&nbsp;<code>bitbucket.org<\/code>). You should see a message confirming a successful SSH connection.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-4-create-and-clone-git-repositories\"><strong>Step 4: Create and Clone Git Repositories<\/strong><\/h3>\n\n\n\n<p>Now that Git is installed and configured, you can create new repositories or clone existing ones.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"create-a-new-local-repository\"><strong>Create a New Local Repository<\/strong><\/h4>\n\n\n\n<p>To create a new Git repository locally, navigate to the directory where you want to store your project and run:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nmkdir my_project\ncd my_project\ngit init\n<\/pre><\/div>\n\n\n<p>This initializes a new empty Git repository in the&nbsp;<code>my_project<\/code>&nbsp;directory. You can now start adding files and making commits.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"clone-an-existing-repository\"><strong>Clone an Existing Repository<\/strong><\/h4>\n\n\n\n<p>To clone an existing Git repository from a remote server (e.g., GitHub, GitLab), use the following command:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit clone git@github.com:username\/repository.git\n<\/pre><\/div>\n\n\n<p>Replace&nbsp;<code>username\/repository.git<\/code>&nbsp;with the actual URL of the repository you want to clone.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"add-files-to-your-repository\"><strong>Add Files to Your Repository<\/strong><\/h4>\n\n\n\n<p>Once inside the repository, add files to it:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ntouch README.md\ngit add README.md\n<\/pre><\/div>\n\n\n<p>This stages the&nbsp;<code>README.md<\/code>&nbsp;file for commit. You can add multiple files by using&nbsp;<code>git add .<\/code>&nbsp;to add all files in the current directory.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"commit-changes\"><strong>Commit Changes<\/strong><\/h4>\n\n\n\n<p>To commit changes to your local repository, use:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit commit -m &quot;Initial commit&quot;\n<\/pre><\/div>\n\n\n<p>This saves the changes to the repository with the message \u201cInitial commit.\u201d<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-5-push-changes-to-remote-repository\"><strong>Step 5: Push Changes to Remote Repository<\/strong><\/h3>\n\n\n\n<p>Once you have committed your changes locally, you can push them to a remote Git server (such as GitHub, GitLab, or Bitbucket).<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Add Remote Repository<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>If you cloned the repository initially, this step is already done. If you created a new repository and need to link it to a remote server, use:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit remote add origin git@github.com:username\/repository.git\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Push Changes<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>To push your changes to the remote repository, run:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit push -u origin master\n<\/pre><\/div>\n\n\n<p>This will upload your local commits to the&nbsp;<code>master<\/code>&nbsp;branch of the remote repository. For other branches, replace&nbsp;<code>master<\/code>&nbsp;with the name of the branch.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-6-pull-updates-from-remote-repository\"><strong>Step 6: Pull Updates from Remote Repository<\/strong><\/h3>\n\n\n\n<p>If you want to fetch and integrate updates from a remote repository, you can use&nbsp;<code>git pull<\/code>:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit pull origin master\n<\/pre><\/div>\n\n\n<p>This will fetch the latest changes from the&nbsp;<code>master<\/code>&nbsp;branch of the remote repository and merge them with your local branch.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-7-configure-git-aliases\"><strong>Step 7: Configure Git Aliases<\/strong><\/h3>\n\n\n\n<p>Git allows you to configure shortcuts, called&nbsp;<strong>aliases<\/strong>, for frequently used commands. To create an alias, run:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit config --global alias.st status\ngit config --global alias.co checkout\ngit config --global alias.ci commit\n<\/pre><\/div>\n\n\n<p>With these aliases, you can use shorter commands such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>git st<\/code>\u00a0instead of\u00a0<code>git status<\/code><\/li>\n\n\n\n<li><code>git co<\/code>\u00a0instead of\u00a0<code>git checkout<\/code><\/li>\n\n\n\n<li><code>git ci<\/code>\u00a0instead of\u00a0<code>git commit<\/code><\/li>\n<\/ul>\n\n\n\n<p>To list all your aliases, run:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngit config --get-regexp alias\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"step-8-backup-and-restore-git-repositories\"><strong>Step 8: Backup and Restore Git Repositories<\/strong><\/h3>\n\n\n\n<p>It is essential to regularly back up your Git repositories, especially if you are managing critical code.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Backup a Git Repository<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>To back up a repository, you can simply copy the entire directory or use a tool like&nbsp;<code>rsync<\/code>&nbsp;to create a backup:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nrsync -av --progress \/path\/to\/repo \/path\/to\/backup\n<\/pre><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Restore from Backup<\/strong>:<\/li>\n<\/ul>\n\n\n\n<p>To restore a repository from a backup, copy the files back into place and navigate to the repository directory:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nrsync -av \/path\/to\/backup\/repo \/path\/to\/repo\ncd \/path\/to\/repo\ngit fsck\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>In this guide, we\u2019ve walked through how to configure Git on a Linux server, from installation and basic setup to creating repositories, pushing changes, and configuring SSH keys for secure authentication. Git is a powerful tool for version control, and with the steps outlined here, you can set up and manage repositories, collaborate with others, and maintain your code efficiently.<\/p>\n\n\n\n<p>By setting up Git on your Linux server, you\u2019re now equipped to manage software development projects, track changes, and ensure that your team can collaborate effectively. Whether you\u2019re working alone or in a team, Git provides the tools you need to manage your codebase with ease.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Git is a distributed version control system that allows multiple developers to work on a project at the same time [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":11661,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[350],"tags":[],"class_list":["post-11660","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/11\/Easy-Way-to-Configure-Git-on-Linux-Server-.jpg","author_info":{"display_name":"Prahlad Prajapati","author_link":"https:\/\/www.youstable.com\/blog\/author\/prahladblog"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/11660","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=11660"}],"version-history":[{"count":3,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/11660\/revisions"}],"predecessor-version":[{"id":15760,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/11660\/revisions\/15760"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/11661"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=11660"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=11660"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=11660"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}