{"id":17874,"date":"2023-09-18T07:02:19","date_gmt":"2023-09-18T07:02:19","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=17874"},"modified":"2023-09-18T07:03:44","modified_gmt":"2023-09-18T07:03:44","slug":"creating-a-new-branch-and-pulling-changes-from-another-branch","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/","title":{"rendered":"Creating a New Branch and Pulling Changes from Another Branch"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg\" alt=\"\" \/><\/p>\n<p>Sometimes in an existing project, we have to work on new features or bug fixes without affecting the main codebase for that we have to create a new branch in which we can make those changes without affecting the main code and git provide us this flexibility. In this article, we will see the step-by-step process of creating a new branch and pulling changes from another branch, so that you can confidently manage your codebase and contribute to your team&#8217;s projects.<\/p>\n<h2>Steps of Creating a New Branch and Pulling Changes<\/h2>\n<p>Here are the steps involved in this process:<\/p>\n<ul>\n<li>\n<p><strong>Step 1: Create a New Branch<\/strong><br \/>\nThe first step in creating a new branch is to decide on a name for your branch. This will be based on the feature or bug that you are working on, or it will be a more general name that describes the purpose of the branch.<\/p>\n<p>You can create a new branch using the following command:<\/p>\n<pre><code>git branch <branch_name><\/code><\/pre>\n<p>Replace &quot;branch_name&quot; with the name of the new branch that you want to create.<\/p>\n<\/li>\n<li>\n<p><strong>Step 2: Switch to the New Branch<\/strong><br \/>\nOnce you have created the new branch, you can switch to it in order to make changes to the branch. You can switch to the new branch using the following command:<\/p>\n<pre><code>git checkout <branch_name><\/code><\/pre>\n<p>Replace &quot;branch_name&quot; with the name of the new branch that you just created.<\/p>\n<\/li>\n<li>\n<p><strong>Step 3: Make Changes to Your Branch<\/strong><br \/>\nAfter you have switched to the new branch, you can make changes to the code or other files in your repository using any text editor or IDE.<br \/>\nBecause this process is valid only when you will make any changes to the project.<\/p>\n<\/li>\n<li>\n<p><strong>Step 4: Add and Commit Your Changes<\/strong><br \/>\nOnce you have made your changes, you will need to stage the changes for commit. You can do this using the following command:<\/p>\n<pre><code>git add <file_name><\/code><\/pre>\n<p>This command will add the specified file to the staging area. You can use the following command to add all changes to the staging area:<\/p>\n<pre><code>git add .<\/code><\/pre>\n<p>After you have staged your changes, you will need to commit them to your local repository. You can do this using the following command:<\/p>\n<pre><code>git commit -m \"Commit message\"<\/code><\/pre>\n<p>Replace &quot;Commit message&quot; with a brief description of the changes that you have made.<\/p>\n<\/li>\n<li>\n<p><strong>Step 5: Pull Changes from Another Branch<\/strong><br \/>\nAfter you have committed your changes to your new branch, you may want to pull changes from another branch in the repository.<br \/>\nBut before that, you need to switch to the branch in which you want to pull the changes using the command:<\/p>\n<pre><code>git checkout <branch_name><\/code><\/pre>\n<p>In place of \u201cbranch_name\u201d write the name of the branch in which you want to pull the changes.<br \/>\nAfter that, you can do this using the following command:<\/p>\n<pre><code>git pull <remote_name> <branch_name><\/code><\/pre>\n<p>Replace &quot;branch_name&quot; with the name of the branch that you want to pull from.<br \/>\nThis command will pull the changes from the specified branch in the remote repository and merge them with your local branch.<\/p>\n<\/li>\n<li>\n<p><strong>Step 6: Push Your Changes to the Remote Repository<\/strong><br \/>\nOnce you have made changes to your new branch and pulled changes from another branch, you will need to push your changes to the remote repository. You can do this using the following command:<\/p>\n<pre><code>git push <remote_name> <branch_name><\/code><\/pre>\n<\/li>\n<\/ul>\n<p><strong>Conclusion<\/strong><br \/>\nIn this article, we have discussed the steps involved in Creating a new branch and pulling changes from another branch also, we have seen the syntax that should be used during the process. The main thing we should keep in mind is to give the appropriate name, or else the process is simple to understand and implement as well.<\/p>\n<h2>FAQs related to creating a new branch and pulling changes from another branch<\/h2>\n<p>Here are some frequently asked questions (FAQs) related to creating a new branch and pulling changes from another branch in a version control system like Git:<\/p>\n<p><strong>1. What is the purpose of creating a new branch in Git?<\/strong><br \/>\nA branch in Git is a separate line of development that allows you to work on new features, bug fixes, or experiments without affecting the main codebase. Creating a new branch helps keep your changes isolated until they are ready to be merged.<\/p>\n<p><strong>2. What&#8217;s the difference between creating a branch and switching to it in Git?<\/strong><br \/>\nWhen you create a branch in Git, it&#8217;s like making a copy of the current branch&#8217;s state. Switching to it means that you move your working directory and current state of the project to that branch.<\/p>\n<p><strong>3. What does &quot;pulling changes from another branch&quot; mean?<\/strong><br \/>\nPulling changes from another branch means retrieving the latest changes made in another branch and applying them to your current branch. This is often done to keep your branch up-to-date with the changes made in the main or another feature branch.<\/p>\n<p><strong>4. What if there are conflicts when pulling changes from another branch?<\/strong><br \/>\nIf there are conflicts when pulling changes, Git will indicate where the conflicts occur in your files. You will need to manually resolve these conflicts by editing the affected files, and then commit the resolved changes.<\/p>\n<p><strong>5. Can I pull changes from multiple branches into my current branch?<\/strong><br \/>\nYes, you can pull changes from multiple branches into your current branch. However, it&#8217;s essential to manage conflicts carefully if changes from different branches affect the same parts of your code.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes in an existing project, we have to work on new features or bug fixes without affecting the main codebase for that we have to create a new branch in which we can make those changes without affecting the main code and git provide us this flexibility. In this article, we will see the step-by-step [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[225],"tags":[],"class_list":["post-17874","post","type-post","status-publish","format-standard","hentry","category-git"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Creating a New Branch and Pulling Changes from Another Branch<\/title>\n<meta name=\"description\" content=\"Here we have discussed the steps involved in Creating a new branch and pulling changes from another branch\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating a New Branch and Pulling Changes from Another Branch\" \/>\n<meta property=\"og:description\" content=\"Here we have discussed the steps involved in Creating a new branch and pulling changes from another branch\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-18T07:02:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-18T07:03:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Creating a New Branch and Pulling Changes from Another Branch\",\"datePublished\":\"2023-09-18T07:02:19+00:00\",\"dateModified\":\"2023-09-18T07:03:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/\"},\"wordCount\":886,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/\",\"name\":\"Creating a New Branch and Pulling Changes from Another Branch\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg\",\"datePublished\":\"2023-09-18T07:02:19+00:00\",\"dateModified\":\"2023-09-18T07:03:44+00:00\",\"description\":\"Here we have discussed the steps involved in Creating a new branch and pulling changes from another branch\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/git\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Creating a New Branch and Pulling Changes from Another Branch\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating a New Branch and Pulling Changes from Another Branch","description":"Here we have discussed the steps involved in Creating a new branch and pulling changes from another branch","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:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/","og_locale":"en_US","og_type":"article","og_title":"Creating a New Branch and Pulling Changes from Another Branch","og_description":"Here we have discussed the steps involved in Creating a new branch and pulling changes from another branch","og_url":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-09-18T07:02:19+00:00","article_modified_time":"2023-09-18T07:03:44+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Creating a New Branch and Pulling Changes from Another Branch","datePublished":"2023-09-18T07:02:19+00:00","dateModified":"2023-09-18T07:03:44+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/"},"wordCount":886,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/","url":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/","name":"Creating a New Branch and Pulling Changes from Another Branch","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg","datePublished":"2023-09-18T07:02:19+00:00","dateModified":"2023-09-18T07:03:44+00:00","description":"Here we have discussed the steps involved in Creating a new branch and pulling changes from another branch","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695020527679-Topic%20%2824%29.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/creating-a-new-branch-and-pulling-changes-from-another-branch\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Git","item":"https:\/\/prepbytes.com\/blog\/category\/git\/"},{"@type":"ListItem","position":3,"name":"Creating a New Branch and Pulling Changes from Another Branch"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17874","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=17874"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17874\/revisions"}],"predecessor-version":[{"id":17884,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17874\/revisions\/17884"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=17874"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=17874"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=17874"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}