{"id":91,"date":"2025-01-07T04:05:22","date_gmt":"2025-01-07T04:05:22","guid":{"rendered":"https:\/\/techkubo.com\/git\/?p=91"},"modified":"2025-05-23T19:16:33","modified_gmt":"2025-05-23T19:16:33","slug":"git-blame","status":"publish","type":"post","link":"https:\/\/techkubo.com\/git\/git-blame\/","title":{"rendered":"Git blame"},"content":{"rendered":"\n<p>The <code>git blame<\/code> command is used to examine the content of any file line by line. It helps you determine who made changes to a file and when those changes were made. This command is particularly useful for tracking down the origin of a specific change or understanding the history of a file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Initial Example<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git blame &lt;your_file_name&gt;<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">BLAME Options<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Option<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><code>-b<\/code><\/td><td>Show blank SHA-1 for boundary commits. Controlled by <code>blame.blankBoundary<\/code> config option.<\/td><\/tr><tr><td><code>--root<\/code><\/td><td>Do not treat root commits as boundaries. Controlled by <code>blame.showRoot<\/code> config option.<\/td><\/tr><tr><td><code>--show-stats<\/code><\/td><td>Include additional statistics at the end of blame output.<\/td><\/tr><tr><td><code>-L &lt;start&gt;,&lt;end&gt;<\/code> <code>-L :&lt;funcname&gt;<\/code><\/td><td>Annotate only the specified line range or function name regex. Can be specified multiple times.<\/td><\/tr><tr><td><code>-l<\/code><\/td><td>Show long revision hashes.<\/td><\/tr><tr><td><code>-t<\/code><\/td><td>Show raw timestamp.<\/td><\/tr><tr><td><code>-S &lt;revs-file&gt;<\/code><\/td><td>Use revisions from the specified file instead of calling <code>git-rev-list<\/code>.<\/td><\/tr><tr><td><code>--reverse &lt;rev&gt;..&lt;rev&gt;<\/code><\/td><td>Walk history forward instead of backward. Shows the last revision in which a line existed. Requires a range of revisions.<\/td><\/tr><tr><td><code>--first-parent<\/code><\/td><td>Follow only the first parent commit upon seeing a merge commit.<\/td><\/tr><tr><td><code>-p<\/code>, <code>--porcelain<\/code><\/td><td>Show in a format designed for machine consumption.<\/td><\/tr><tr><td><code>--line-porcelain<\/code><\/td><td>Show the porcelain format with commit information for each line. Implies <code>--porcelain<\/code>.<\/td><\/tr><tr><td><code>--incremental<\/code><\/td><td>Show the result incrementally in a format designed for machine consumption.<\/td><\/tr><tr><td><code>--encoding=&lt;encoding&gt;<\/code><\/td><td>Specifies the encoding used for outputting author names and commit summaries.<\/td><\/tr><tr><td><code>--contents &lt;file&gt;<\/code><\/td><td>Annotate using the contents from the specified file. Can read from standard input with <code>-<\/code>.<\/td><\/tr><tr><td><code>--date &lt;format&gt;<\/code><\/td><td>Specifies the format used to output dates.<\/td><\/tr><tr><td><code>--[no-]progress<\/code><\/td><td>Enable or disable progress reporting. Cannot be used with <code>--porcelain<\/code> or <code>--incremental<\/code>.<\/td><\/tr><tr><td><code>-M[&lt;num&gt;]<\/code><\/td><td>Detect moved or copied lines within a file. <code>&lt;num&gt;<\/code> specifies the minimum number of alphanumeric characters for detection (default: 20).<\/td><\/tr><tr><td><code>-C[&lt;num&gt;]<\/code><\/td><td>Detect moved or copied lines between files. Can be specified multiple times. <code>&lt;num&gt;<\/code> specifies the minimum number of alphanumeric characters for detection (default: 40).<\/td><\/tr><tr><td><code>--ignore-rev &lt;rev&gt;<\/code><\/td><td>Ignore changes made by the specified revision when assigning blame. Can be specified multiple times.<\/td><\/tr><tr><td><code>--ignore-revs-file &lt;file&gt;<\/code><\/td><td>Ignore revisions listed in the specified file. Can be repeated.<\/td><\/tr><tr><td><code>--color-lines<\/code><\/td><td>Color line annotations differently if they come from the same commit as the preceding line.<\/td><\/tr><tr><td><code>--color-by-age<\/code><\/td><td>Color line annotations based on the age of the line.<\/td><\/tr><tr><td><code>-h<\/code><\/td><td>Show help message.<\/td><\/tr><tr><td><code>-c<\/code><\/td><td>Use the same output mode as <code>git-annotate<\/code>.<\/td><\/tr><tr><td><code>--score-debug<\/code><\/td><td>Include debugging information related to line movement between or within files.<\/td><\/tr><tr><td><code>-f<\/code>, <code>--show-name<\/code><\/td><td>Show the filename in the original commit.<\/td><\/tr><tr><td><code>-n<\/code>, <code>--show-number<\/code><\/td><td>Show the line number in the original commit.<\/td><\/tr><tr><td><code>-s<\/code><\/td><td>Suppress the author name and timestamp from the output.<\/td><\/tr><tr><td><code>-e<\/code>, <code>--show-email<\/code><\/td><td>Show the author email instead of the author name. Controlled by <code>blame.showEmail<\/code> config option.<\/td><\/tr><tr><td><code>-w<\/code><\/td><td>Ignore whitespace when comparing the parent\u2019s version and the child\u2019s.<\/td><\/tr><tr><td><code>--abbrev=&lt;n&gt;<\/code><\/td><td>Use the specified number of hexadecimal digits for abbreviated object names.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Examples<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">1. Blame a Specific File<\/h4>\n\n\n\n<p>To see who modified each line of a specific file, simply run:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git blame example.txt<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<p>This will display the author, date, and commit hash for each line in <code>example.txt<\/code>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">2. Blame a Specific Line Range<\/h4>\n\n\n\n<p>If you only want to see who modified a specific range of lines in a file, you can use the <code>-L<\/code> option:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git blame -L 10,20 example.txt<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<p>This will display the blame information for lines 10 to 20 in <code>example.txt<\/code>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">3. Blame with Additional Options<\/h4>\n\n\n\n<p>You can also use the <code>-c<\/code>, <code>-w<\/code>, and <code>-M<\/code> options to customize the output:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-c<\/code>: Displays the original commit for lines that have been moved or copied.<\/li>\n\n\n\n<li><code>-w<\/code>: Ignores changes in whitespace.<\/li>\n\n\n\n<li><code>-M<\/code>: Detects lines that have been moved within a file.<\/li>\n<\/ul>\n\n\n\n<p>For example, to blame a file and ignore whitespace changes:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git blame -w example.txt<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<p>This will display the blame information for <code>example.txt<\/code>, ignoring any changes in whitespace.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The git blame command is used to examine the content of any file line by line. It helps you determine [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","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":"","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-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":"","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-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":"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":""},"mobile":{"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":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-91","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Git blame - GIT Tutorial<\/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:\/\/techkubo.com\/git\/git-blame\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git blame - GIT Tutorial\" \/>\n<meta property=\"og:description\" content=\"The git blame command is used to examine the content of any file line by line. It helps you determine [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techkubo.com\/git\/git-blame\/\" \/>\n<meta property=\"og:site_name\" content=\"GIT Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-07T04:05:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-23T19:16:33+00:00\" \/>\n<meta name=\"author\" content=\"Manong\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Manong\" \/>\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:\/\/techkubo.com\/git\/git-blame\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-blame\/\"},\"author\":{\"name\":\"Manong\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965\"},\"headline\":\"Git blame\",\"datePublished\":\"2025-01-07T04:05:22+00:00\",\"dateModified\":\"2025-05-23T19:16:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-blame\/\"},\"wordCount\":521,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/techkubo.com\/git\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/techkubo.com\/git\/git-blame\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/techkubo.com\/git\/git-blame\/\",\"url\":\"https:\/\/techkubo.com\/git\/git-blame\/\",\"name\":\"Git blame - GIT Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/techkubo.com\/git\/#website\"},\"datePublished\":\"2025-01-07T04:05:22+00:00\",\"dateModified\":\"2025-05-23T19:16:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-blame\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/techkubo.com\/git\/git-blame\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/techkubo.com\/git\/git-blame\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/techkubo.com\/git\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git blame\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/techkubo.com\/git\/#website\",\"url\":\"https:\/\/techkubo.com\/git\/\",\"name\":\"GIT Tutorial\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/techkubo.com\/git\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/techkubo.com\/git\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/techkubo.com\/git\/#organization\",\"name\":\"GIT Tutorial\",\"url\":\"https:\/\/techkubo.com\/git\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/techkubo.com\/git\/wp-content\/uploads\/sites\/9\/2025\/01\/cropped-Techkubo-logo-1.png\",\"contentUrl\":\"https:\/\/techkubo.com\/git\/wp-content\/uploads\/sites\/9\/2025\/01\/cropped-Techkubo-logo-1.png\",\"width\":1620,\"height\":1166,\"caption\":\"GIT Tutorial\"},\"image\":{\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965\",\"name\":\"Manong\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g\",\"caption\":\"Manong\"},\"sameAs\":[\"https:\/\/techkubo.com\"],\"url\":\"https:\/\/techkubo.com\/git\/author\/manong\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Git blame - GIT Tutorial","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:\/\/techkubo.com\/git\/git-blame\/","og_locale":"en_US","og_type":"article","og_title":"Git blame - GIT Tutorial","og_description":"The git blame command is used to examine the content of any file line by line. It helps you determine [&hellip;]","og_url":"https:\/\/techkubo.com\/git\/git-blame\/","og_site_name":"GIT Tutorial","article_published_time":"2025-01-07T04:05:22+00:00","article_modified_time":"2025-05-23T19:16:33+00:00","author":"Manong","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Manong","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/techkubo.com\/git\/git-blame\/#article","isPartOf":{"@id":"https:\/\/techkubo.com\/git\/git-blame\/"},"author":{"name":"Manong","@id":"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965"},"headline":"Git blame","datePublished":"2025-01-07T04:05:22+00:00","dateModified":"2025-05-23T19:16:33+00:00","mainEntityOfPage":{"@id":"https:\/\/techkubo.com\/git\/git-blame\/"},"wordCount":521,"commentCount":0,"publisher":{"@id":"https:\/\/techkubo.com\/git\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techkubo.com\/git\/git-blame\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/techkubo.com\/git\/git-blame\/","url":"https:\/\/techkubo.com\/git\/git-blame\/","name":"Git blame - GIT Tutorial","isPartOf":{"@id":"https:\/\/techkubo.com\/git\/#website"},"datePublished":"2025-01-07T04:05:22+00:00","dateModified":"2025-05-23T19:16:33+00:00","breadcrumb":{"@id":"https:\/\/techkubo.com\/git\/git-blame\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techkubo.com\/git\/git-blame\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/techkubo.com\/git\/git-blame\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techkubo.com\/git\/"},{"@type":"ListItem","position":2,"name":"Git blame"}]},{"@type":"WebSite","@id":"https:\/\/techkubo.com\/git\/#website","url":"https:\/\/techkubo.com\/git\/","name":"GIT Tutorial","description":"","publisher":{"@id":"https:\/\/techkubo.com\/git\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techkubo.com\/git\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techkubo.com\/git\/#organization","name":"GIT Tutorial","url":"https:\/\/techkubo.com\/git\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techkubo.com\/git\/#\/schema\/logo\/image\/","url":"https:\/\/techkubo.com\/git\/wp-content\/uploads\/sites\/9\/2025\/01\/cropped-Techkubo-logo-1.png","contentUrl":"https:\/\/techkubo.com\/git\/wp-content\/uploads\/sites\/9\/2025\/01\/cropped-Techkubo-logo-1.png","width":1620,"height":1166,"caption":"GIT Tutorial"},"image":{"@id":"https:\/\/techkubo.com\/git\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965","name":"Manong","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techkubo.com\/git\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g","caption":"Manong"},"sameAs":["https:\/\/techkubo.com"],"url":"https:\/\/techkubo.com\/git\/author\/manong\/"}]}},"_links":{"self":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts\/91"}],"collection":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/comments?post=91"}],"version-history":[{"count":2,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts\/91\/revisions"}],"predecessor-version":[{"id":176,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts\/91\/revisions\/176"}],"wp:attachment":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/media?parent=91"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/categories?post=91"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/tags?post=91"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}