diff --git a/pages/02.tutorials/01.User/02.GDPR/05.git/docs.en.md b/pages/02.tutorials/01.User/02.GDPR/05.git/docs.en.md index 4d09d640..524e914e 100644 --- a/pages/02.tutorials/01.User/02.GDPR/05.git/docs.en.md +++ b/pages/02.tutorials/01.User/02.GDPR/05.git/docs.en.md @@ -64,6 +64,15 @@ If you do not have a repo, and what you want is to recreate the original one the git clone repo_name.bundle -b master my_new_repo_folder ~~~ +!! **NOTE** that while both commands do similar things, the main difference between them is that **git bundle** communicate changes to a repo to which you can't push (or which can't fetch from you), for example, because there is not network access. So, **git bundle** let you pack the references of your repository as a single file that is a recognized git source. You can fetch, pull clone from it. + +According to the [git docs](https://git-scm.com/docs/git-bundle): + +> Some workflows require that one or more branches of development on one machine be replicated on another machine, but the two machines cannot be directly connected, and therefore the interactive Git protocols (git, ssh, http) cannot be used. + +> The git bundle command packages objects and references in an archive at the originating machine, which can then be imported into another repository using git fetch, git pull, or git clone, after moving the archive by some means (e.g., by sneakernet). + + ## Using the web interface From **Disroot's Gitea** web interface you can download an entire repository in a single compressed file. diff --git a/pages/02.tutorials/01.User/03.DisApp/docs.en.md b/pages/02.tutorials/01.User/03.DisApp/docs.en.md index 3270be98..f7904c8b 100644 --- a/pages/02.tutorials/01.User/03.DisApp/docs.en.md +++ b/pages/02.tutorials/01.User/03.DisApp/docs.en.md @@ -4,9 +4,9 @@ published: true visible: true indexed: true updated: - last_modified: "July 2019" + last_modified: "December 2020" app: DisApp - app_version: 1.2 + app_version: 2.0.2 taxonomy: category: - docs