{"id":2638,"date":"2020-01-07T09:56:01","date_gmt":"2020-01-07T00:56:01","guid":{"rendered":"https:\/\/lab4ict.com\/system\/?p=2638"},"modified":"2023-06-17T07:29:06","modified_gmt":"2023-06-16T22:29:06","slug":"git%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%99%e3%82%8b%ef%bc%81%ef%bc%88%e3%83%ad%e3%83%bc%e3%82%ab%e3%83%ab%e7%92%b0%e5%a2%83%e7%b7%a8%ef%bc%89","status":"publish","type":"post","link":"https:\/\/lab4ict.com\/system\/archives\/2638","title":{"rendered":"Git\u3092\u4f7f\u7528\u3057\u3066\u30ed\u30fc\u30ab\u30eb\u74b0\u5883\u3067\u30e9\u30a4\u30d6\u30e9\u30ea\u7ba1\u7406\u3092\u884c\u3046\uff01\uff08\u57fa\u672c\u7de8\uff09"},"content":{"rendered":"<p>git\u3092\u30ed\u30fc\u30ab\u30eb\u74b0\u5883\u3067\u4f7f\u7528\u3057\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u3092\u3059\u308b\u65b9\u6cd5\u3092\u307e\u3068\u3081\u307e\u3059\u3002<\/p>\n<h2>\u4f7f\u7528\u74b0\u5883<\/h2>\n<ul>\n<li>Ubuntu 18.04.3 Desktop<\/li>\n<li>git version 2.17.1<\/li>\n<\/ul>\n<h2>git\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb<\/h2>\n<p>git\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306b\u306f\u3001apt\u30b3\u30de\u30f3\u30c9\u3067\u300cgit\u300d\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,2]; title: ; notranslate\" title=\"\">\r\n$ sudo apt install git\r\n$ git --version\r\ngit version 2.17.1\r\n<\/pre>\n<h2>git\u306e\u521d\u671f\u8a2d\u5b9a<\/h2>\n<p>git\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u7528\u3059\u308b\u969b\u306e\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u60c5\u5831\u3068\u3057\u3066\u3001E-mail\u30a2\u30c9\u30ec\u30b9\u3068\u6307\u540d\u3092\u767b\u9332\u3057\u307e\u3059\u3002\u7279\u5b9a\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u307f\u306b\u8a2d\u5b9a\u3059\u308b\u5834\u5408\u306f\u3001\u300c--global\u300d\u306f\u6307\u5b9a\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,2]; title: ; notranslate\" title=\"\">\r\n$ git config --global user.email &quot;lab4ict@gmail.com&quot;\r\n$ git config --global user.name &quot;Lab4ict Webmaster&quot;\r\n<\/pre>\n<h2>\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210<\/h2>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u3068\u3057\u3066\u4f7f\u7528\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,2]; title: ; notranslate\" title=\"\">\r\n$ mkdir -p ~\/Documents\/git\/sample\/sample001\r\n$ cd ~\/Documents\/git\/sample\/sample001\r\n<\/pre>\n<h2>\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u521d\u671f\u5316<\/h2>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u521d\u671f\u5316\u3057\u307e\u3059\u3002\u300c.git\u300d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,2]; title: ; notranslate\" title=\"\">\r\n$ git init\r\n$ ls -a\r\n.  ..  .git\r\n<\/pre>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u304c\u7a7a\u306e\u72b6\u614b\u3067\u3042\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ git status\r\nOn branch master\r\n\r\nNo commits yet\r\n\r\nnothing to commit (create\/copy files and use &quot;git add&quot; to track)\r\n<\/pre>\n<h2>\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30b9\u30c6\u30fc\u30b8\u30f3\u30b0\u306e\u72b6\u614b\u3068\u3057\u3066\u30d5\u30a1\u30a4\u30eb\u3092\u767b\u9332<\/h2>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u3001git\u3067\u8a8d\u8b58\u3055\u308c\u308b\u304b\u78ba\u8a8d\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,2]; title: ; notranslate\" title=\"\">\r\n$ vi readme.txt\r\n$ git add\r\nOn branch master\r\n\r\nNo commits yet\r\n\r\nUntracked files:\r\n  (use &quot;git add &lt;file&gt;...&quot; to include in what will be committed)\r\n\r\n\treadme.txt\r\n\r\nnothing added to commit but untracked files present (use &quot;git add&quot; to track)\r\n<\/pre>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30b9\u30c6\u30fc\u30b8\u30f3\u30b0\u306e\u72b6\u614b\u3068\u3057\u3066\u767b\u9332\u3057\u307e\u3059\u3002\u3053\u306e\u6642\u70b9\u3067\u306f\u3001\u307e\u3060\u6b63\u5f0f\u7248\u3068\u3057\u3066\u30b3\u30df\u30c3\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ git status\r\nOn branch master\r\n\r\nNo commits yet\r\n\r\nChanges to be committed:\r\n  (use &quot;git rm --cached &lt;file&gt;...&quot; to unstage)\r\n\r\n\tnew file:   readme.txt\r\n\r\n<\/pre>\n<p>\u30b9\u30c6\u30fc\u30b8\u30f3\u30b0\u306e\u72b6\u614b\u3092\u53d6\u308a\u6d88\u3059\u5834\u5408\u306f\u3001\u300cgit reset\u300d\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ git reset\r\n<\/pre>\n<h2>\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30b9\u30c6\u30fc\u30b8\u30f3\u30b0\u72b6\u614b\u3068\u3057\u3066\u767b\u9332\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8<\/h2>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059\u3002\u30b3\u30df\u30c3\u30c8\u3059\u308b\u969b\u306b\u306f\u3001\u5909\u66f4\u5c65\u6b74\u3068\u3057\u3066\u6709\u7528\u306a\u30b3\u30e1\u30f3\u30c8\u3092\u6307\u5b9a\u3057\u307e\u3057\u3087\u3046\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ git commit -m &quot;First Version&quot;\r\n&#x5B;master (root-commit) 0b01d5c] First Version\r\n 1 file changed, 1 insertion(+)\r\n create mode 100644 readme.txt\r\n<\/pre>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u72b6\u614b\u3092\u78ba\u8a8d\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ git status\r\nOn branch master\r\nnothing to commit, working tree clean\r\n<\/pre>\n<p>\u30d5\u30a1\u30a4\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u3066\u78ba\u8a8d\u3057\u3066\u307f\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ git ls-files\r\nreadme.txt\r\n<\/pre>\n<h2>\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u5909\u66f4\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30b3\u30df\u30c3\u30c8<\/h2>\n<p>\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u5909\u66f4\u3057\u305f\u5834\u5408\u306f\u3001\u65b0\u898f\u3068\u540c\u3058\u624b\u9806\u3067\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,2,11,12,19]; title: ; notranslate\" title=\"\">\r\n$ vi readme.txt\r\n$ git status\r\nOn branch master\r\nChanges not staged for commit:\r\n  (use &quot;git add &lt;file&gt;...&quot; to update what will be committed)\r\n  (use &quot;git checkout -- &lt;file&gt;...&quot; to discard changes in working directory)\r\n \r\n    modified:   readme.txt\r\n \r\nno changes added to commit (use &quot;git add&quot; and\/or &quot;git commit -a&quot;)\r\n$ git add readme.txt\r\n$ git status\r\nOn branch master\r\nChanges to be committed:\r\n  (use &quot;git reset HEAD &lt;file&gt;...&quot; to unstage)\r\n \r\n    modified:   readme.txt\r\n \r\n$ git commit -m &quot;Second Commit: readme.txt&quot;\r\n&#x5B;master 2e3d0a3] Second Commit: readme.txt\r\n 1 file changed, 1 insertion(+)\r\n<\/pre>\n<h2>\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u306e\u30b3\u30df\u30c3\u30c8\u306e\u5c65\u6b74\u3092\u78ba\u8a8d<\/h2>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u306e\u30b3\u30df\u30c3\u30c8\u306e\u5c65\u6b74\u3092\u78ba\u8a8d\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ git log\r\ncommit 2e3d0a30cdc1c5d59d00c372b054b8e3bc976b5a (HEAD -&gt; master)\r\nAuthor: Lab4ict Sitemaster &lt;lab4ict@gmail.com&gt;\r\nDate:   Tue Jan 7 10:09:51 2020 +0900\r\n \r\n    Second Commit: readme.txt\r\n \r\ncommit 0b01d5c6308e08645189c46427a9dee07d6b6c73\r\nAuthor: Lab4ict Sitemaster &lt;lab4ict@gmail.com&gt;\r\nDate:   Tue Jan 7 09:51:41 2020 +0900\r\n \r\n    First Version\r\n<\/pre>\n<h2>\u30d5\u30a1\u30a4\u30eb\u3092\u307e\u3068\u3081\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332<\/h2>\n<p>\u300cgit add .\u300d\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u7528\u3059\u308b\u3068\u540c\u3058\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u5185\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u307e\u3068\u3081\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,3,15,16,27]; title: ; notranslate\" title=\"\">\r\n$ ls\r\nsample1.txt  sample2.txt\r\n$ git status\r\nOn branch master\r\n \r\nNo commits yet\r\n \r\nUntracked files:\r\n  (use &quot;git add &lt;file&gt;...&quot; to include in what will be committed)\r\n \r\n    sample1.txt\r\n    sample2.txt\r\n \r\nnothing added to commit but untracked files present (use &quot;git add&quot; to track)\r\n$ git add .\r\n$ git status\r\nOn branch master\r\n \r\nNo commits yet\r\n \r\nChanges to be committed:\r\n  (use &quot;git rm --cached &lt;file&gt;...&quot; to unstage)\r\n \r\n    new file:   sample1.txt\r\n    new file:   sample2.txt\r\n \r\n$ git commit -m &quot;First Version&quot;\r\n&#x5B;master (root-commit) 79dfc72] First Version\r\n 2 files changed, 2 insertions(+)\r\n create mode 100644 sample1.txt\r\n create mode 100644 sample2.txt\r\n<\/pre>\n<h2>\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5909\u66f4\u3059\u308b\uff01<\/h2>\n<p>\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u5909\u66f4\u306f\u3001\u300cgit mv\u300d\u30b3\u30de\u30f3\u30c9\u3067\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,2,9]; title: ; notranslate\" title=\"\">\r\n$ git mv sample1.txt sampleX.txt\r\n$ git status\r\nOn branch master\r\nChanges to be committed:\r\n  (use &quot;git reset HEAD &lt;file&gt;...&quot; to unstage)\r\n \r\n    renamed:    sample1.txt -&gt; sampleX.txt\r\n \r\n$ git commit -m &quot;Change Filename sample1.txt -&gt; sampleX.txt&quot;\r\n&#x5B;master 897e082] Change Filename sample1.txt -&gt; sampleX.txt\r\n 1 file changed, 0 insertions(+), 0 deletions(-)\r\n rename sample1.txt =&gt; sampleX.txt (100%)\r\n<\/pre>\n<h2>\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u4ee5\u524d\u306e\u30b3\u30df\u30c3\u30c8\u306e\u72b6\u614b\u306b\u623b\u3059\uff01<\/h2>\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u4ee5\u524d\u306e\u30b3\u30df\u30c3\u30c8\u306e\u72b6\u614b\u306b\u623b\u3059\u65b9\u6cd5\u3067\u3059\u3002\u5c65\u6b74\u306e\u60c5\u5831\u304b\u3089\u30b3\u30df\u30c3\u30c8\u306eID\u3092\u78ba\u8a8d\u3057\u3066\u300cgit reset --hard\u300d\u30b3\u30de\u30f3\u30c9\u3092\u3092\u4f7f\u7528\u3057\u3066\u623b\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,13,15]; title: ; notranslate\" title=\"\">\r\n$ git log\r\ncommit 897e0821dc2517cd2c8df5bb19a10243e310b49f (HEAD -&gt; master)\r\nAuthor: Lab4ict Sitemaster &lt;lab4ict@gmail.com&gt;\r\nDate:   Tue Jan 7 11:42:30 2020 +0900\r\n\r\n    Change Filename sample1.txt -&gt; sampleX.txt\r\n\r\ncommit 79dfc727025122d1712c7def61d4f55efc1fa967\r\nAuthor: Lab4ict Sitemaster &lt;lab4ict@gmail.com&gt;\r\nDate:   Tue Jan 7 11:39:17 2020 +0900\r\n\r\n    First Version\r\n$ git reset --hard 79dfc727025122d1712c7def61d4f55efc1fa967\r\nHEAD is now at 79dfc72 First Version\r\n$ git log\r\ncommit 79dfc727025122d1712c7def61d4f55efc1fa967 (HEAD -&gt; master)\r\nAuthor: Lab4ict Sitemaster &lt;lab4ict@gmail.com&gt;\r\nDate:   Tue Jan 7 11:39:17 2020 +0900\r\n\r\n    First Version\r\n\r\n<\/pre>\n<h2>\u7279\u5b9a\u306e\u30d5\u30a1\u30a4\u30eb\u3084\u30d5\u30a9\u30eb\u30c0\u3092\u767b\u9332\u5bfe\u8c61\u5916\u306b\u3059\u308b\uff01<\/h2>\n<p>\u300c.git]\u3068\u540c\u3058\u968e\u5c64\u306b\u300c.gitingore\u300d\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u3001\u7279\u5b9a\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3084\u30d5\u30a9\u30eb\u30c0\u540d\u3092\u8a18\u8f09\u3092\u3057\u3066\u3001\u767b\u9332\u5bfe\u8c61\u5916\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u300c.gitignore\u300d\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f\u3001\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u81ea\u4f53\u3082\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u3044\u305f\u307b\u3046\u304c\u6709\u76ca\u306a\u30b1\u30fc\u30b9\u304c\u591a\u3044\u3067\u3059\u3002\u4ee5\u4e0b\u306f\u3001\u300csample2.txt\u300d\u3092\u767b\u9332\u5bfe\u8c61\u5916\u306b\u3059\u308b\u4f8b\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ cat .gitignore\r\nsample2.txt\r\n<\/pre>\n<h2>bash\u74b0\u5883\u3067\u306egit\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u306e\u88dc\u5b8c<\/h2>\n<p>bash\u74b0\u5883\u3067\u306f\u3001\u300cTAB\u300d\u30ad\u30fc\u3092\u62bc\u3059\u3053\u3068\u3067\u3001git\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u306e\u88dc\u5b8c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u7a4d\u6975\u7684\u306b\u6d3b\u7528\u3057\u307e\u3057\u3087\u3046\uff01<\/p>\n<h2>\u304a\u308f\u308a\u306b<\/h2>\n<p>git\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u30ed\u30fc\u30ab\u30eb\u74b0\u5883\u306b\u4f5c\u6210\u3057\u3066\u4f7f\u7528\u3059\u308b\u65b9\u6cd5\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u3002<\/p>\n<h2><span id=\"i-12\" class=\"ez-toc-section\">\u53c2\u8003<\/span><\/h2>\n<ul>\n<li><a href=\"https:\/\/git-scm.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">git<\/a><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>git\u3092\u30ed\u30fc\u30ab\u30eb\u74b0\u5883\u3067\u4f7f\u7528\u3057\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u3092\u3059\u308b\u65b9\u6cd5\u3092\u307e\u3068\u3081\u307e\u3059\u3002 \u4f7f\u7528\u74b0\u5883 Ubuntu 18.04.3 Desktop git version 2.17.1 git\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb git\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306b\u306f\u3001\u2026<\/p>\n","protected":false},"author":1,"featured_media":642,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[162],"tags":[506,489,320],"class_list":["post-2638","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-git","tag-git","tag-489","tag-320"],"_links":{"self":[{"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/posts\/2638","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/comments?post=2638"}],"version-history":[{"count":0,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/posts\/2638\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/media\/642"}],"wp:attachment":[{"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/media?parent=2638"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/categories?post=2638"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/tags?post=2638"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}