{"id":1949,"date":"2021-07-01T09:20:41","date_gmt":"2021-07-01T09:20:41","guid":{"rendered":"https:\/\/gitprotect.io\/blog\/?p=1949"},"modified":"2024-03-06T08:43:33","modified_gmt":"2024-03-06T08:43:33","slug":"have-you-ever-thought-about-scenarios-for-backup-for-your-repositories","status":"publish","type":"post","link":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/","title":{"rendered":"Have You Ever Thought About Scenarios for Backup for Your Repositories?"},"content":{"rendered":"\n<p>We live in a time when having backups isn&#8217;t reserved for the biggest ones, and frequent backing up and storing has become as important as the data itself. Have you ever wondered how your repositories in your company are secured?<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Backup has now become the norm as well as a good and desired practice. I perfectly remember that just a few years ago, persuading your employer to spend money on an archiving system was a task comparable to understanding the entire code of Docker. Sometimes I get the impression that nowadays the computing power and RAM have become so cheap that no one thinks about code optimization anymore, but this is a story for another post. Over the last few years, developers have come to like and learn to work using GIT, and it doesn&#8217;t matter if we&#8217;re talking about repositories on the local GIT server or on a code hosting platform like GitHub, Bitbucket, etc. One thing is for sure, now the distributed version control system is used everywhere.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"different-git-backup-strategies\">Different Git backup strategies<\/h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/LsgL1_zjk-8hIXoX_6EYJCCDuVkKhgPrXxP6PehLN0q7u5a9xkzjhkuZdMxf6ADp6RUUDFHe0jQU1ba5Di8fZqPxM-e65RCDZbj1RVj6XCxy_gldJaBoOtH_eBSfj6sC_bx1IHpu\" alt=\"Providing\/Implementing GIT backups\" title=\"Providing\/Implementing GIT backups\"\/><\/figure><\/div>\n\n\n<p>Today we&#8217;re going to tackle the issue of <a href=\"https:\/\/gitprotect.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">Git backup<\/a>, which is so overlooked in the world today. I must admit that I still meet people who openly say that if they have a local repo and a commit made to the server, they are safe. In the pages of the last few entries on this blog, I tried to present that this isn&#8217;t entirely true. However, let&#8217;s focus on the backup strategies that are used today.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"repositories-copy\">Repositories copy<\/h3>\n\n\n\n<p>The first method used very often is to <strong>copy the repositories at the level of the operating system<\/strong> itself. For example, admins were instructed to secure the company&#8217;s creativity, so they decided to do it in a well-known, and in most cases, working way. Depending on the operating system, they set the task either using the CRON tool built into Linux distributions or the Task Scheduler that is part of Microsoft&#8217;s systems. Now let&#8217;s take a look at some examples of commands that are likely to be used:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#Linux\n0 * * * * rsync -av repos\/ \/backup\/gitMirror\/\n0 1 * * * tar -cvpzf \/repos\/$(\/bin\/date +\\%Y_\\%m_\\%d_\\%H_\\%M_\\%S).co.tar.gz \/backup\/gitBackup\/ &gt; \/backup\/logfile.log 2&gt;&amp;1\n\n#Windows\nrobocopy M:\\repos\\ \\\\10.0.0.2\\m$\\backup\\ \/MIR\n7z.exe a -ttar \"\\\\10.0.0.2\\m$\\backup\\Archives%DATE:~10,4%%DATE:~4,2%%DATE:~7,2%__%TIME:~-11,2%hour\n.tar\" \"\\\\10.0.0.2\\m$\\backup\"\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"git-level-backup\">Git-level backup<\/h3>\n\n\n\n<p>The second method proposed by the IT department will probably be <strong>GIT-level backup<\/strong>. This means that backups will be made using the built-in tools. Here we can of course use the git archive command, but also command like <a href=\"https:\/\/gitprotect.io\/blog\/how-to-clone-a-git-repository\/\" target=\"_blank\" rel=\"noreferrer noopener\">git clone<\/a> (learn more about <a href=\"https:\/\/gitprotect.io\/blog\/how-to-clone-using-https-in-git\/\">how to clone using https in git<\/a>) or git bundle. For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#GIT Clone\ngit clone --mirror repos\/repo\/ \/backup\/gitBackup\/backup.repo\n\n#GIT Bundle\ngit bundle create backup.bundle master\n\n#GIT Archive\ngit archive --output=.\/backup\/gitBackup\/backup.tar --format=tar HEAD\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<p class=\"has-text-align-left\" style=\"font-size:22px\">How secure are your repos and metadata? Don&#8217;t push luck &#8211; <strong>secure your code with the first professional GitHub, Bitbucket, and GitLab backup<\/strong>.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button align=&quot;center&quot;\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https:\/\/gitprotect.io\/sign-up.html\" style=\"border-radius:50px;background-color:#ff0300\" target=\"_blank\" rel=\"noreferrer noopener\">Start 14 days free GitProtect trial<\/a><\/div>\n<\/div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-do-you-mean-by-backup\">What do you mean by backup?<\/h2>\n\n\n\n<p>The question is whether these are really backups. After all, there are many differences between the built-in tools mentioned above. The proposed git clone will give us a dump of the entire repo, but backing up an entire forest full of different repositories is another story. By default, the git bundle and git archive will <strong>create repository archives<\/strong> without unnecessary files such as old versions, missed flags, etc. The problem is that while we can assume that we don&#8217;t need these unnecessary files during production, developers may have a different opinion on this. This isn&#8217;t the end of potential ways of dealing with data backup at the GIT level. After all, you can easily push repositories to external resources or even to sites like GitHub. There are many ways, but can they be called full-fledged backups?<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/gitprotect.io\/sign-up.html\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" width=\"1024\" height=\"536\" src=\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2022\/03\/LinkedIn-ads-template-1024x536.png\" alt=\"Get free trial\" class=\"wp-image-2555\" style=\"width:512px;height:268px\" srcset=\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2022\/03\/LinkedIn-ads-template-1024x536.png 1024w, https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2022\/03\/LinkedIn-ads-template-300x157.png 300w, https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2022\/03\/LinkedIn-ads-template-768x402.png 768w, https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2022\/03\/LinkedIn-ads-template-400x209.png 400w, https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2022\/03\/LinkedIn-ads-template.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure><\/div>\n\n\n<p>Of course, some kind of dispute between developers and sysadmin \/ DevOps may also arise in the third scenario. Let&#8217;s say that the choice fell on backing up entire servers and storing them on LTO tapes. Everything is fine, but such backups usually take much longer, and the restoration itself is associated with a much longer break. However, many more questions appear here. Firstly, how do you know that such forms of backup ensure data integrity and consistency? We can assume that everyday administrators restore repositories from such backups to the test infrastructure and after that programmers check their repositories. Let us agree, however, that finding time for such activities for both sides will be rather a task that is impossible to do in modern times.<\/p>\n\n\n\n<p>Xopero decided to take the initiative and present GitProtect.io, an application that allows you to answer all the above questions. We invite you to monitor the GitProtect Blog. Soon, we will present, discuss and answer questions about the application that will change your approach to Git backup.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We live in a time when having backups isn&#8217;t reserved for the biggest ones, and frequent backing up and storing has become as important as the data itself. Have you ever wondered how your repositories in your company are secured?<\/p>\n","protected":false},"author":4,"featured_media":1955,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-1949","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-git-backup-101","post--single"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Have You Ever Thought About Scenarios for Backup for Your Repositories? - Blog | GitProtect.io<\/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:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Have You Ever Thought About Scenarios for Backup for Your Repositories? - Blog | GitProtect.io\" \/>\n<meta property=\"og:description\" content=\"We live in a time when having backups isn&#8217;t reserved for the biggest ones, and frequent backing up and storing has become as important as the data itself. Have you ever wondered how your repositories in your company are secured?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog | GitProtect.io\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/XoperoSoftware\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-01T09:20:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-06T08:43:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Michal Zbyl\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GitProtectio\" \/>\n<meta name=\"twitter:site\" content=\"@GitProtectio\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michal Zbyl\" \/>\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:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/\"},\"author\":{\"name\":\"Michal Zbyl\",\"@id\":\"https:\/\/gitprotect.io\/blog\/#\/schema\/person\/52a5c06583d6cc6e418c1afb37653017\"},\"headline\":\"Have You Ever Thought About Scenarios for Backup for Your Repositories?\",\"datePublished\":\"2021-07-01T09:20:41+00:00\",\"dateModified\":\"2024-03-06T08:43:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/\"},\"wordCount\":752,\"publisher\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png\",\"articleSection\":[\"Git Backup 101\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/\",\"url\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/\",\"name\":\"Have You Ever Thought About Scenarios for Backup for Your Repositories? - Blog | GitProtect.io\",\"isPartOf\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png\",\"datePublished\":\"2021-07-01T09:20:41+00:00\",\"dateModified\":\"2024-03-06T08:43:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#primaryimage\",\"url\":\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png\",\"contentUrl\":\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png\",\"width\":1200,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Strona g\u0142\u00f3wna\",\"item\":\"https:\/\/gitprotect.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Have You Ever Thought About Scenarios for Backup for Your Repositories?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/gitprotect.io\/blog\/#website\",\"url\":\"https:\/\/gitprotect.io\/blog\/\",\"name\":\"GitProtect.io Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/gitprotect.io\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/gitprotect.io\/blog\/#organization\",\"name\":\"GitProtect.io\",\"url\":\"https:\/\/gitprotect.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/gitprotect.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2023\/05\/favicon-528x528-1.png\",\"contentUrl\":\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2023\/05\/favicon-528x528-1.png\",\"width\":528,\"height\":528,\"caption\":\"GitProtect.io\"},\"image\":{\"@id\":\"https:\/\/gitprotect.io\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/XoperoSoftware\/\",\"https:\/\/x.com\/GitProtectio\",\"https:\/\/www.linkedin.com\/company\/xopero-software\/\",\"https:\/\/www.youtube.com\/channel\/UCiEnl6n0mIO6w7twccz-l2w\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/gitprotect.io\/blog\/#\/schema\/person\/52a5c06583d6cc6e418c1afb37653017\",\"name\":\"Michal Zbyl\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/gitprotect.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2023\/05\/michal-zbyl_avatar-96x96.jpg\",\"contentUrl\":\"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2023\/05\/michal-zbyl_avatar-96x96.jpg\",\"caption\":\"Michal Zbyl\"},\"url\":\"https:\/\/gitprotect.io\/blog\/author\/michal-zbyl\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Have You Ever Thought About Scenarios for Backup for Your Repositories? - Blog | GitProtect.io","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:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/","og_locale":"en_US","og_type":"article","og_title":"Have You Ever Thought About Scenarios for Backup for Your Repositories? - Blog | GitProtect.io","og_description":"We live in a time when having backups isn&#8217;t reserved for the biggest ones, and frequent backing up and storing has become as important as the data itself. Have you ever wondered how your repositories in your company are secured?","og_url":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/","og_site_name":"Blog | GitProtect.io","article_publisher":"https:\/\/www.facebook.com\/XoperoSoftware\/","article_published_time":"2021-07-01T09:20:41+00:00","article_modified_time":"2024-03-06T08:43:33+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png","type":"image\/png"}],"author":"Michal Zbyl","twitter_card":"summary_large_image","twitter_creator":"@GitProtectio","twitter_site":"@GitProtectio","twitter_misc":{"Written by":"Michal Zbyl","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#article","isPartOf":{"@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/"},"author":{"name":"Michal Zbyl","@id":"https:\/\/gitprotect.io\/blog\/#\/schema\/person\/52a5c06583d6cc6e418c1afb37653017"},"headline":"Have You Ever Thought About Scenarios for Backup for Your Repositories?","datePublished":"2021-07-01T09:20:41+00:00","dateModified":"2024-03-06T08:43:33+00:00","mainEntityOfPage":{"@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/"},"wordCount":752,"publisher":{"@id":"https:\/\/gitprotect.io\/blog\/#organization"},"image":{"@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#primaryimage"},"thumbnailUrl":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png","articleSection":["Git Backup 101"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/","url":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/","name":"Have You Ever Thought About Scenarios for Backup for Your Repositories? - Blog | GitProtect.io","isPartOf":{"@id":"https:\/\/gitprotect.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#primaryimage"},"image":{"@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#primaryimage"},"thumbnailUrl":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png","datePublished":"2021-07-01T09:20:41+00:00","dateModified":"2024-03-06T08:43:33+00:00","breadcrumb":{"@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#primaryimage","url":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png","contentUrl":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2021\/07\/question.png","width":1200,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/gitprotect.io\/blog\/have-you-ever-thought-about-scenarios-for-backup-for-your-repositories\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Strona g\u0142\u00f3wna","item":"https:\/\/gitprotect.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Have You Ever Thought About Scenarios for Backup for Your Repositories?"}]},{"@type":"WebSite","@id":"https:\/\/gitprotect.io\/blog\/#website","url":"https:\/\/gitprotect.io\/blog\/","name":"GitProtect.io Blog","description":"","publisher":{"@id":"https:\/\/gitprotect.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gitprotect.io\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/gitprotect.io\/blog\/#organization","name":"GitProtect.io","url":"https:\/\/gitprotect.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gitprotect.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2023\/05\/favicon-528x528-1.png","contentUrl":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2023\/05\/favicon-528x528-1.png","width":528,"height":528,"caption":"GitProtect.io"},"image":{"@id":"https:\/\/gitprotect.io\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/XoperoSoftware\/","https:\/\/x.com\/GitProtectio","https:\/\/www.linkedin.com\/company\/xopero-software\/","https:\/\/www.youtube.com\/channel\/UCiEnl6n0mIO6w7twccz-l2w"]},{"@type":"Person","@id":"https:\/\/gitprotect.io\/blog\/#\/schema\/person\/52a5c06583d6cc6e418c1afb37653017","name":"Michal Zbyl","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gitprotect.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2023\/05\/michal-zbyl_avatar-96x96.jpg","contentUrl":"https:\/\/gitprotect.io\/blog\/wp-content\/uploads\/2023\/05\/michal-zbyl_avatar-96x96.jpg","caption":"Michal Zbyl"},"url":"https:\/\/gitprotect.io\/blog\/author\/michal-zbyl\/"}]}},"_links":{"self":[{"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/posts\/1949","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/comments?post=1949"}],"version-history":[{"count":9,"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/posts\/1949\/revisions"}],"predecessor-version":[{"id":5034,"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/posts\/1949\/revisions\/5034"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/media\/1955"}],"wp:attachment":[{"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/media?parent=1949"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/categories?post=1949"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gitprotect.io\/blog\/wp-json\/wp\/v2\/tags?post=1949"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}