git-bundle Questions
1
How can I bundle a git project without cloning it every time? Right now I do always commands below.
git clone --mirror http://git_project
cd git_project
git bundle create '../git_project.lock' --a...
Dispassionate asked 7/2, 2019 at 11:12
2
Solved
I'm needing to bundle a git repo that we've been using git-lfs on but have run into an issue.
It will bundle up fine but when I come to clone it this error occurs
Downloading .../Dll's/DotNetZ...
Handtomouth asked 31/8, 2018 at 8:45
2
Solved
Hy!
Is there a way to get a list of all commits stored in a git bundle without cloning it first?
Getting the heads is easy, but I couldn't find a way to get a full log out of it.
Conan asked 22/1, 2013 at 14:30
1
Solved
I just received a Git bundle via email. How do I unbundle it in order to read it? I am having trouble using the unbundle command. I have tried
git unbundle *bundle name*
but that gives me just a ...
Amatruda asked 16/3, 2017 at 16:43
1
Solved
I have two rooms in which I maintain some source code using git, a "dev" room where most development happens and a "deploy" room in which we actually use the software. Inevitably some changes happe...
Helbon asked 13/8, 2013 at 18:1
1
I'm looking to archive a git repository to a regular file server for a client.
Previously I've used git bundle create [path] --all
to do this and it's worked well.
However this repository is usin...
Grubstake asked 1/6, 2016 at 9:13
2
Solved
I received .bundle file in my gmail. I was told that it was a git bundle file. I tried to open it in sublime and I got a bunch of what seemed to have looked like hex values. It is suppose to be ins...
Mirilla asked 15/1, 2015 at 1:4
2
Solved
I need to keep my development trees in sync on different computers, with no network connection between them.
We have a central git repository, and I normally work on my own clone on my office comp...
Kanya asked 3/9, 2010 at 12:59
1
© 2022 - 2024 — McMap. All rights reserved.