I was looking for git-bundles as an option to keep my 2 repositories (being continuously worked on) in sync with each other.
Since both are two different geographical locations and setting up a VPN is also not an option I plan to use bundles..(Any other better alternative or method? )
I stumbled upon Jefromi's answer here . It explains things very well.
However if I have multiple branches being worked on and I wanted to update them all, how do I do it?
(The answer uses basis for master but uses --branches that will copy the complete history of all other branches in bundle again. I want only updated/added commits of all braches)
You can create a new backup while excluding what was in the previous backup:
Here you create an incremental backup with incremental history for branches
A
andB
, plus the new branchC
.You can see that approach detailed in "Incremental backups with git bundle, for all branches"
I prefer the simpler approach of using the date of the last backup:
It is ok to backup "a bit more": duplicate commits won't be imported twice when you will use that incremental backup.
I have made a script based on
--since
: save_bundles.With Git 2.31 (Q1 2021), "
git bundle
"(man) learns--stdin
option to read its refs from the standard input.See commit 5bb0fd2, commit ce1d6d9, commit 9901164 (11 Jan 2021) by Jiang Xin (
jiangxin
).(Merged by Junio C Hamano --
gitster
-- in commit 8b48981, 25 Jan 2021)So for instance:
With Git 2.41 (Q2 2023), "
git bundle
"(man) learned that-
is a common way to say that the input comes from the standard input and/or the output goes to the standard output.It used to work only for output and only from the root level of the working tree.
See commit 0bbe103, commit 7ce4088, commit ef3b291, commit bf8b1e0 (04 Mar 2023) by Jeff King (
peff
).See commit a8bfa99 (04 Mar 2023) by Junio C Hamano (
gitster
).(Merged by Junio C Hamano --
gitster
-- in commit 95de376, 19 Mar 2023)This applies to
git bundle
:create
verify <file>
list-heads <file>
unbundle <file>