{"id":10,"date":"2024-12-24T05:51:16","date_gmt":"2024-12-24T05:51:16","guid":{"rendered":"https:\/\/techkubo.com\/git\/?p=10"},"modified":"2025-05-23T18:58:32","modified_gmt":"2025-05-23T18:58:32","slug":"git-config","status":"publish","type":"post","link":"https:\/\/techkubo.com\/git\/git-config\/","title":{"rendered":"Git config"},"content":{"rendered":"\n<p>The <code>git config<\/code> command lets you change settings in Git. You can set things like your name, email, and which text editor you want to use with Git. These settings can be applied for all your projects, just one project, or for all users on your computer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Initial Example<\/h2>\n\n\n\n<p>To set your name for all your Git projects, use:<\/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 config --global user.name &quot;Your Name&quot;<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Levels of Settings<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>System (<code>--system<\/code>)<\/strong>: Applies to all users on your computer.<\/li>\n\n\n\n<li><strong>Global (<code>--global<\/code>)<\/strong>: Applies to all your Git projects.<\/li>\n\n\n\n<li><strong>Local (<code>--local<\/code>)<\/strong>: Applies only to the project you&#8217;re working on.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">CONFIG 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>--replace-all<\/code><\/td><td>Replace all lines matching the key (and optionally the value pattern) rather than just one.<\/td><\/tr><tr><td><code>--append<\/code><\/td><td>Add a new line to the option without altering existing values.<\/td><\/tr><tr><td><code>--comment &lt;message&gt;<\/code><\/td><td>Append a comment to new or modified lines.<\/td><\/tr><tr><td><code>--all<\/code><\/td><td>With <code>get<\/code>, return all values for a multi-valued key.<\/td><\/tr><tr><td><code>--regexp<\/code><\/td><td>With <code>get<\/code>, interpret the name as a regular expression.<\/td><\/tr><tr><td><code>--url=&lt;URL&gt;<\/code><\/td><td>Return the value for the key with the best matching URL.<\/td><\/tr><tr><td><code>--global<\/code><\/td><td>Write to or read from the global <code>~\/.gitconfig<\/code> file.<\/td><\/tr><tr><td><code>--system<\/code><\/td><td>Write to or read from the system-wide <code>$(prefix)\/etc\/gitconfig<\/code> file.<\/td><\/tr><tr><td><code>--local<\/code><\/td><td>Write to or read from the repository&#8217;s <code>.git\/config<\/code> file (default behavior).<\/td><\/tr><tr><td><code>--worktree<\/code><\/td><td>Similar to <code>--local<\/code>, but reads from or writes to <code>$GIT_DIR\/config.worktree<\/code> if <code>extensions.worktreeConfig<\/code> is enabled.<\/td><\/tr><tr><td><code>-f, --file &lt;config-file&gt;<\/code><\/td><td>Write to or read from the specified file.<\/td><\/tr><tr><td><code>--blob &lt;blob&gt;<\/code><\/td><td>Use the given blob instead of a file, e.g., <code>master:.gitmodules<\/code>.<\/td><\/tr><tr><td><code>--fixed-value<\/code><\/td><td>Treat the value pattern as an exact string instead of a regular expression.<\/td><\/tr><tr><td><code>--type &lt;type&gt;<\/code><\/td><td>Ensure the input or output is valid under the given type constraint (e.g., <code>bool<\/code>, <code>int<\/code>, <code>path<\/code>).<\/td><\/tr><tr><td><code>--no-type<\/code><\/td><td>Unset the previously set type specifier.<\/td><\/tr><tr><td><code>-z, --null<\/code><\/td><td>End values with the null character instead of a newline.<\/td><\/tr><tr><td><code>--name-only<\/code><\/td><td>Output only the names of config variables.<\/td><\/tr><tr><td><code>--show-origin<\/code><\/td><td>Augment the output with the origin type and actual origin of each queried config option.<\/td><\/tr><tr><td><code>--show-scope<\/code><\/td><td>Augment the output with the scope of each queried config option.<\/td><\/tr><tr><td><code>--get-colorbool &lt;name&gt; [&lt;stdout-is-tty&gt;]<\/code><\/td><td>Find the color setting for <code>&lt;name&gt;<\/code> and output &#8220;true&#8221; or &#8220;false&#8221; based on the provided or standard output&#8217;s TTY status.<\/td><\/tr><tr><td><code>--[no-]includes<\/code><\/td><td>Respect or ignore <code>include.*<\/code> directives in config files. Defaults to off with specific files.<\/td><\/tr><tr><td><code>--default &lt;value&gt;<\/code><\/td><td>Use the specified default value if the requested variable is not found.<\/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. Set Your Email<\/h4>\n\n\n\n<p>To set your email address for all your Git projects:<\/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 config --global user.email &quot;your.email@example.com&quot;<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">2. Choose Your Text Editor<\/h4>\n\n\n\n<p>To set Vim as your default text editor for Git:<\/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 config --global core.editor &quot;vim&quot;<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">3. Set a Merge Tool<\/h4>\n\n\n\n<p>To choose Meld as your merge tool for resolving conflicts:<\/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 config --global merge.tool &quot;meld&quot;<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">4. See All Settings<\/h4>\n\n\n\n<p>To list all your Git settings:<\/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 config --list<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">5. Project-Specific Settings<\/h4>\n\n\n\n<p>To set a different name for a specific project, go to that project&#8217;s directory and use:<\/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 config user.name &quot;Project Specific Name&quot;<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The git config command lets you change settings in Git. You can set things like your name, email, and which [&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-10","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 config - 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-config\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git config - GIT Tutorial\" \/>\n<meta property=\"og:description\" content=\"The git config command lets you change settings in Git. You can set things like your name, email, and which [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techkubo.com\/git\/git-config\/\" \/>\n<meta property=\"og:site_name\" content=\"GIT Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-24T05:51:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-23T18:58:32+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/techkubo.com\/git\/git-config\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-config\/\"},\"author\":{\"name\":\"Manong\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965\"},\"headline\":\"Git config\",\"datePublished\":\"2024-12-24T05:51:16+00:00\",\"dateModified\":\"2025-05-23T18:58:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-config\/\"},\"wordCount\":399,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/techkubo.com\/git\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/techkubo.com\/git\/git-config\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/techkubo.com\/git\/git-config\/\",\"url\":\"https:\/\/techkubo.com\/git\/git-config\/\",\"name\":\"Git config - GIT Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/techkubo.com\/git\/#website\"},\"datePublished\":\"2024-12-24T05:51:16+00:00\",\"dateModified\":\"2025-05-23T18:58:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-config\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/techkubo.com\/git\/git-config\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/techkubo.com\/git\/git-config\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/techkubo.com\/git\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git config\"}]},{\"@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 config - 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-config\/","og_locale":"en_US","og_type":"article","og_title":"Git config - GIT Tutorial","og_description":"The git config command lets you change settings in Git. You can set things like your name, email, and which [&hellip;]","og_url":"https:\/\/techkubo.com\/git\/git-config\/","og_site_name":"GIT Tutorial","article_published_time":"2024-12-24T05:51:16+00:00","article_modified_time":"2025-05-23T18:58:32+00:00","author":"Manong","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Manong","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/techkubo.com\/git\/git-config\/#article","isPartOf":{"@id":"https:\/\/techkubo.com\/git\/git-config\/"},"author":{"name":"Manong","@id":"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965"},"headline":"Git config","datePublished":"2024-12-24T05:51:16+00:00","dateModified":"2025-05-23T18:58:32+00:00","mainEntityOfPage":{"@id":"https:\/\/techkubo.com\/git\/git-config\/"},"wordCount":399,"commentCount":0,"publisher":{"@id":"https:\/\/techkubo.com\/git\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techkubo.com\/git\/git-config\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/techkubo.com\/git\/git-config\/","url":"https:\/\/techkubo.com\/git\/git-config\/","name":"Git config - GIT Tutorial","isPartOf":{"@id":"https:\/\/techkubo.com\/git\/#website"},"datePublished":"2024-12-24T05:51:16+00:00","dateModified":"2025-05-23T18:58:32+00:00","breadcrumb":{"@id":"https:\/\/techkubo.com\/git\/git-config\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techkubo.com\/git\/git-config\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/techkubo.com\/git\/git-config\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techkubo.com\/git\/"},{"@type":"ListItem","position":2,"name":"Git config"}]},{"@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\/10"}],"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=10"}],"version-history":[{"count":2,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts\/10\/revisions"}],"predecessor-version":[{"id":153,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts\/10\/revisions\/153"}],"wp:attachment":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/media?parent=10"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/categories?post=10"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/tags?post=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}