aboutsummaryrefslogtreecommitdiff
path: root/README-hacking.md
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2019-09-15 03:46:56 +0100
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2019-09-15 03:46:56 +0100
commit403ec7d7c632ae410ee2052bfc0a5f52aa05e466 (patch)
treea82e4db84af2fd2af0734655c729f57b484ddc01 /README-hacking.md
parent8a389dd253f0af6b61d8c42edfc9b3524a91f9fc (diff)
Minor edits on the git bundle suggestion of README-hacking.md
After a re-read on Gitlab, it has been slightly edited to be more clear.
Diffstat (limited to 'README-hacking.md')
-rw-r--r--README-hacking.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/README-hacking.md b/README-hacking.md
index 1893dc9..6cb95b2 100644
--- a/README-hacking.md
+++ b/README-hacking.md
@@ -1048,20 +1048,21 @@ for the benefit of others.
convenient to have the whole project's Git history into one file to
save with your datasets. Afterall, you can't be sure that your
current Git server (for example Gitlab, Github, or Bitbucket) will be
- active for ever. You can't rely on them for archival
- purposes. Fortunately keeping your whole history in one file is easy
- with Git using the following commands. To learn more about it, run
- `git help bundle`.
+ active forever. While they are good for the immediate future, you
+ can't rely on them for archival purposes. Fortunately keeping your
+ whole history in one file is easy with Git using the following
+ commands. To learn more about it, run `git help bundle`.
- - "bundle" your project's history into one file:
+ - "bundle" your project's history into one file (just don't forget to
+ change `my-project-git.bundle` to a descriptive name of your
+ project):
```shell
$ git bundle create my-project-git.bundle --all
```
- - You now have one file with the whole history that you can easily
- upload anywhere. Later, if you need to unbundle it, you can use
- the following command.
+ - You can easily upload `my-project-git.bundle` anywhere. Later, if
+ you need to unbundle it, you can use the following command.
```shell
$ git clone my-project-git.bundle