* git clone questions relating to cpio @ 2007-10-01 19:28 Reece Dunn 2007-10-01 21:42 ` Johan Herland 2007-10-01 23:23 ` git clone questions relating to cpio Johannes Schindelin 0 siblings, 2 replies; 14+ messages in thread From: Reece Dunn @ 2007-10-01 19:28 UTC (permalink / raw) To: Git Hi, I am running a Linux From Scratch 6.2 system that does not have cpio installed on it. This means that I can't clone a local repository unless I install cpio. Is it possible to use a fallback method if cpio is not present, as there is no NO_CPIO option on make like there is for OpenSSH, cURL and expat? Also, I have an external USB hardrive that is mounted onto the virtual filesystem. Will clones from the USB harddrive (or a USB flash drive that is mounted) result in a copy being performed, not a hardlink? Ideally, the hard linking for local clones should be optional. What if I want to move a repository because, for example, I have imported a CVS repository and now want to push it to a new bare repository? - Reece ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: git clone questions relating to cpio 2007-10-01 19:28 git clone questions relating to cpio Reece Dunn @ 2007-10-01 21:42 ` Johan Herland 2007-10-02 21:09 ` Reece Dunn 2007-10-01 23:23 ` git clone questions relating to cpio Johannes Schindelin 1 sibling, 1 reply; 14+ messages in thread From: Johan Herland @ 2007-10-01 21:42 UTC (permalink / raw) To: git; +Cc: Reece Dunn On Monday 01 October 2007, Reece Dunn wrote: > Hi, > > I am running a Linux From Scratch 6.2 system that does not have cpio > installed on it. This means that I can't clone a local repository > unless I install cpio. Is it possible to use a fallback method if cpio > is not present, as there is no NO_CPIO option on make like there is > for OpenSSH, cURL and expat? Using "file://" when specifying the source repo will force git-clone to use the git protocol, instead of doing a copy/hardlink. I.e. change "git clone foo bar" to "git clone file://foo bar" in order to prevent git-clone from calling cpio. However, grepping for cpio in the git source tree reveals a couple of uses in git-merge, so you might bump into problems there... > Also, I have an external USB hardrive that is mounted onto the virtual > filesystem. Will clones from the USB harddrive (or a USB flash drive > that is mounted) result in a copy being performed, not a hardlink? Hardlinks are impossible across filesystems. If you're cloning to a different filesystem git will _have_ to make a full copy. > Ideally, the hard linking for local clones should be optional. <quote src="git-clone(1)"> --local, -l When the repository to clone from is on a local machine, this flag bypasses normal "git aware" transport mechanism and clones the repository by making a copy of HEAD and everything under objects and refs directories. The files under .git/objects/ directory are hardlinked to save space when possible. This is now the default when the source repository is specified with /path/to/repo syntax, so it essentially is a no-op option. To force copying instead of hardlinking (which may be desirable if you are trying to make a back-up of your repository), but still avoid the usual "git aware" transport mechanism, --no-hardlinks can be used. --no-hardlinks Optimize the cloning process from a repository on a local filesystem by copying files under .git/objects directory. </quote> And as I said above, you can use "file://" to force the "git aware" transport mechanism, which bypasses the whole local copy/hardlink issue entirely. > What if I want to move a repository because, for example, I have imported > a CVS repository and now want to push it to a new bare repository? Even if you were to use hardlinks, cloning a repo followed by deleting the original will be safe (as long as you don't supply '--shared' to git-clone). That's the beauty of hardlinks. I also think it's fairly safe to just 'mv' the whole repository to its new location. Have fun! :) ...Johan -- Johan Herland, <johan@herland.net> www.herland.net ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: git clone questions relating to cpio 2007-10-01 21:42 ` Johan Herland @ 2007-10-02 21:09 ` Reece Dunn 2007-10-02 23:42 ` [PATCH] Mention 'cpio' dependency in INSTALL Johan Herland 0 siblings, 1 reply; 14+ messages in thread From: Reece Dunn @ 2007-10-02 21:09 UTC (permalink / raw) To: Johan Herland; +Cc: git On 01/10/2007, Johan Herland <johan@herland.net> wrote: > On Monday 01 October 2007, Reece Dunn wrote: > > Hi, > > > > I am running a Linux From Scratch 6.2 system that does not have cpio > > installed on it. This means that I can't clone a local repository > > unless I install cpio. Is it possible to use a fallback method if cpio > > is not present, as there is no NO_CPIO option on make like there is > > for OpenSSH, cURL and expat? > > Using "file://" when specifying the source repo will force git-clone to use > the git protocol, instead of doing a copy/hardlink. > > I.e. change "git clone foo bar" to "git clone file://foo bar" in order to > prevent git-clone from calling cpio. Thanks for the tip. > However, grepping for cpio in the git source tree reveals a couple of uses > in git-merge, so you might bump into problems there... Looks like I'll need to install cpio, then (also allowing me to take advantage of the fast local clones via hardlinks). Do you know if cpio is listed anywhere in required dependencies? > > Also, I have an external USB hardrive that is mounted onto the virtual > > filesystem. Will clones from the USB harddrive (or a USB flash drive > > that is mounted) result in a copy being performed, not a hardlink? > > Hardlinks are impossible across filesystems. If you're cloning to a > different filesystem git will _have_ to make a full copy. Exactly. I was asking this to clarify cpio (and therefore git) behaviour in this situation. > > Ideally, the hard linking for local clones should be optional. > > <quote src="git-clone(1)">...</quote> Indeed, they are. Thanks for the info. > And as I said above, you can use "file://" to force the "git aware" > transport mechanism, which bypasses the whole local copy/hardlink issue > entirely. Sure. > > What if I want to move a repository because, for example, I have imported > > a CVS repository and now want to push it to a new bare repository? > > Even if you were to use hardlinks, cloning a repo followed by deleting the > original will be safe (as long as you don't supply '--shared' to > git-clone). That's the beauty of hardlinks. That is good to know. > I also think it's fairly safe to just 'mv' the whole repository to its new > location. This also works, as long as you are not moving between a bare and standard repository. > Have fun! :) Will do :) Thanks, - Reece ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] Mention 'cpio' dependency in INSTALL 2007-10-02 21:09 ` Reece Dunn @ 2007-10-02 23:42 ` Johan Herland 2007-10-03 0:14 ` Junio C Hamano 0 siblings, 1 reply; 14+ messages in thread From: Johan Herland @ 2007-10-02 23:42 UTC (permalink / raw) To: git; +Cc: Reece Dunn, Junio C Hamano Signed-off-by: Johan Herland <johan@herland.net> --- On Tuesday 02 October 2007, Reece Dunn wrote: > Do you know if cpio is listed anywhere in required dependencies? Doing the following in the git repo: $ grep -r cpio * git-clone.sh: find objects -depth -print | cpio -pumd$l "$GIT_DIR/" || exit 1 git-merge.sh: cpio -0 -o >"$GIT_DIR/MERGE_SAVE" git-merge.sh: cpio -iuv <"$GIT_DIR/MERGE_SAVE" reveals that cpio is not mentioned anywhere in the documentation, nor in the requirements section of the INSTALL file. Have fun! ...Johan INSTALL | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/INSTALL b/INSTALL index 289b046..f1eb404 100644 --- a/INSTALL +++ b/INSTALL @@ -79,6 +79,9 @@ Issues of note: - "perl" and POSIX-compliant shells are needed to use most of the barebone Porcelainish scripts. + - "cpio" is used by git-merge for saving and restoring the index, + and by git-clone when doing a local (possibly hardlinked) clone. + - Some platform specific issues are dealt with Makefile rules, but depending on your specific installation, you may not have all the libraries/tools needed, or you may have -- 1.5.3.3.1144.gf10f2 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH] Mention 'cpio' dependency in INSTALL 2007-10-02 23:42 ` [PATCH] Mention 'cpio' dependency in INSTALL Johan Herland @ 2007-10-03 0:14 ` Junio C Hamano 2007-10-03 6:09 ` Chris Larson 2007-10-03 7:40 ` Miklos Vajna 0 siblings, 2 replies; 14+ messages in thread From: Junio C Hamano @ 2007-10-03 0:14 UTC (permalink / raw) To: Johan Herland; +Cc: git, Reece Dunn Johan Herland <johan@herland.net> writes: > reveals that cpio is not mentioned anywhere in the documentation, > nor in the requirements section of the INSTALL file. Thanks. We use many other tools that are typically found in bog-standard UNIX environments, like sed, echo, cat, sort, etc. and we do not list them in the INSTALL file (nor we would want to). cpio used to be in the "bog standard" category but perhaps Linux distros do not install it by default, so it is worth listing it there. Are there other commands we rely on that may not be universally installed? I myself consider "cut" to be in the category, but other than that I do not think of anything offhand. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Mention 'cpio' dependency in INSTALL 2007-10-03 0:14 ` Junio C Hamano @ 2007-10-03 6:09 ` Chris Larson 2007-10-03 7:40 ` Miklos Vajna 1 sibling, 0 replies; 14+ messages in thread From: Chris Larson @ 2007-10-03 6:09 UTC (permalink / raw) To: git On 10/2/07, Junio C Hamano <gitster@pobox.com> wrote: > Johan Herland <johan@herland.net> writes: > > > reveals that cpio is not mentioned anywhere in the documentation, > > nor in the requirements section of the INSTALL file. > > Thanks. > > We use many other tools that are typically found in bog-standard > UNIX environments, like sed, echo, cat, sort, etc. and we do not > list them in the INSTALL file (nor we would want to). cpio used > to be in the "bog standard" category but perhaps Linux distros > do not install it by default, so it is worth listing it there. > > Are there other commands we rely on that may not be universally > installed? I myself consider "cut" to be in the category, but > other than that I do not think of anything offhand. I'd think it might be a good idea to list any utilities used that aren't in, say, the Single Unix Specification, for example. -- Chris Larson - clarson at kergoth dot com Software Engineer - MontaVista - clarson at mvista dot com Core Developer/Architect - TSLib, BitBake, OpenEmbedded, OpenZaurus ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Mention 'cpio' dependency in INSTALL 2007-10-03 0:14 ` Junio C Hamano 2007-10-03 6:09 ` Chris Larson @ 2007-10-03 7:40 ` Miklos Vajna 2007-10-03 8:27 ` [PATCH v2] INSTALL: Update section on external dependencies Johan Herland 1 sibling, 1 reply; 14+ messages in thread From: Miklos Vajna @ 2007-10-03 7:40 UTC (permalink / raw) To: Junio C Hamano; +Cc: Johan Herland, git, Reece Dunn [-- Attachment #1: Type: text/plain, Size: 436 bytes --] On Tue, Oct 02, 2007 at 05:14:25PM -0700, Junio C Hamano <gitster@pobox.com> wrote: > Are there other commands we rely on that may not be universally > installed? I myself consider "cut" to be in the category, but > other than that I do not think of anything offhand. when using git in a chroot, i obviously had coreutils/sed/grep installed and the only "extra" package i needed (besides the curl an openssl libs) was cpio - VMiklos [-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2] INSTALL: Update section on external dependencies 2007-10-03 7:40 ` Miklos Vajna @ 2007-10-03 8:27 ` Johan Herland 2007-10-03 15:56 ` Johannes Schindelin 0 siblings, 1 reply; 14+ messages in thread From: Johan Herland @ 2007-10-03 8:27 UTC (permalink / raw) To: git; +Cc: Miklos Vajna, Junio C Hamano, Reece Dunn Includes: - Mention dependency on "core" utilities, including coreutils, sed, cut, grep - Mention dependency on cpio - Fix up some whitespace and linebreaking issues Signed-off-by: Johan Herland <johan@herland.net> --- On Wednesday 03 October 2007, Miklos Vajna wrote: > On Tue, Oct 02, 2007 at 05:14:25PM -0700, Junio C Hamano <gitster@pobox.com> wrote: > > Are there other commands we rely on that may not be universally > > installed? I myself consider "cut" to be in the category, but > > other than that I do not think of anything offhand. > > when using git in a chroot, i obviously had coreutils/sed/grep installed > and the only "extra" package i needed (besides the curl an openssl libs) > was cpio Ok, here's a more complete patch. ...Johan INSTALL | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git a/INSTALL b/INSTALL index 289b046..244470f 100644 --- a/INSTALL +++ b/INSTALL @@ -54,6 +54,8 @@ Issues of note: - Git is reasonably self-sufficient, but does depend on a few external programs and libraries: + - Common "core" utilities including coreutils, sed, cut, and grep. + - "zlib", the compression library. Git won't build without it. - "openssl". Unless you specify otherwise, you'll get the SHA1 @@ -63,22 +65,24 @@ Issues of note: that come with git (git includes the one from Mozilla, and has its own PowerPC and ARM optimized ones too - see the Makefile). - - "libcurl" and "curl" executable. git-http-fetch and - git-fetch use them. If you do not use http - transfer, you are probably OK if you do not have - them. + - "libcurl" and "curl" executable. git-http-fetch and git-fetch + use them. If you do not use http transfer, you are probably OK + if you do not have them. - expat library; git-http-push uses it for remote lock management over DAV. Similar to "curl" above, this is optional. - - "wish", the Tcl/Tk windowing shell is used in gitk to show the - history graphically, and in git-gui. + - "wish", the Tcl/Tk windowing shell is used in gitk to show the + history graphically, and in git-gui. - - "ssh" is used to push and pull over the net + - "ssh" is used to push and pull over the net. - "perl" and POSIX-compliant shells are needed to use most of the barebone Porcelainish scripts. + - "cpio" is used by git-merge for saving and restoring the index, + and by git-clone when doing a local (possibly hardlinked) clone. + - Some platform specific issues are dealt with Makefile rules, but depending on your specific installation, you may not have all the libraries/tools needed, or you may have -- 1.5.3.3.1144.gf10f2 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH v2] INSTALL: Update section on external dependencies 2007-10-03 8:27 ` [PATCH v2] INSTALL: Update section on external dependencies Johan Herland @ 2007-10-03 15:56 ` Johannes Schindelin 2007-10-03 16:05 ` Shawn O. Pearce 0 siblings, 1 reply; 14+ messages in thread From: Johannes Schindelin @ 2007-10-03 15:56 UTC (permalink / raw) To: Johan Herland; +Cc: git, Miklos Vajna, Junio C Hamano, Reece Dunn Hi, On Wed, 3 Oct 2007, Johan Herland wrote: > Includes: > - Mention dependency on "core" utilities, including coreutils, sed, cut, grep Maybe mention libc, too? Oh, and that you need a computer? ;-) > - Fix up some whitespace and linebreaking issues The commit message could use some of that, too... ;-) Ciao, Dscho ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2] INSTALL: Update section on external dependencies 2007-10-03 15:56 ` Johannes Schindelin @ 2007-10-03 16:05 ` Shawn O. Pearce 0 siblings, 0 replies; 14+ messages in thread From: Shawn O. Pearce @ 2007-10-03 16:05 UTC (permalink / raw) To: Johannes Schindelin Cc: Johan Herland, git, Miklos Vajna, Junio C Hamano, Reece Dunn Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote: > On Wed, 3 Oct 2007, Johan Herland wrote: > > > Includes: > > - Mention dependency on "core" utilities, including coreutils, sed, cut, grep > > Maybe mention libc, too? Oh, and that you need a computer? ;-) Don't forget that the computer must be plugged in and have electricity as well. I see users all too often wonder why everything they type is black, on a black background... -- Shawn. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: git clone questions relating to cpio 2007-10-01 19:28 git clone questions relating to cpio Reece Dunn 2007-10-01 21:42 ` Johan Herland @ 2007-10-01 23:23 ` Johannes Schindelin 2007-10-01 23:32 ` Junio C Hamano 1 sibling, 1 reply; 14+ messages in thread From: Johannes Schindelin @ 2007-10-01 23:23 UTC (permalink / raw) To: Reece Dunn; +Cc: Git Hi, On Mon, 1 Oct 2007, Reece Dunn wrote: > I am running a Linux From Scratch 6.2 system that does not have cpio > installed on it. This means that I can't clone a local repository > unless I install cpio. You might be interested in the workaround Hannes did in mingw.git; he made a wrapper script called 'cpio' using 'tar'. Ciao, Dscho ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: git clone questions relating to cpio 2007-10-01 23:23 ` git clone questions relating to cpio Johannes Schindelin @ 2007-10-01 23:32 ` Junio C Hamano 2007-10-02 6:11 ` Johannes Sixt 0 siblings, 1 reply; 14+ messages in thread From: Junio C Hamano @ 2007-10-01 23:32 UTC (permalink / raw) To: Johannes Schindelin; +Cc: Reece Dunn, Git Johannes Schindelin <Johannes.Schindelin@gmx.de> writes: > On Mon, 1 Oct 2007, Reece Dunn wrote: > >> I am running a Linux From Scratch 6.2 system that does not have cpio >> installed on it. This means that I can't clone a local repository >> unless I install cpio. > > You might be interested in the workaround Hannes did in mingw.git; he made > a wrapper script called 'cpio' using 'tar'. I think that may be good enough as workaround, but I do not think you would get the space saving from hardlinks that way. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: git clone questions relating to cpio 2007-10-01 23:32 ` Junio C Hamano @ 2007-10-02 6:11 ` Johannes Sixt 2007-10-02 6:23 ` Junio C Hamano 0 siblings, 1 reply; 14+ messages in thread From: Johannes Sixt @ 2007-10-02 6:11 UTC (permalink / raw) To: Junio C Hamano; +Cc: Johannes Schindelin, Reece Dunn, Git Junio C Hamano schrieb: > Johannes Schindelin <Johannes.Schindelin@gmx.de> writes: > >> On Mon, 1 Oct 2007, Reece Dunn wrote: >> >>> I am running a Linux From Scratch 6.2 system that does not have cpio >>> installed on it. This means that I can't clone a local repository >>> unless I install cpio. >> You might be interested in the workaround Hannes did in mingw.git; he made >> a wrapper script called 'cpio' using 'tar'. > > I think that may be good enough as workaround, but I do not > think you would get the space saving from hardlinks that way. FWIW, I'm thinking about changing the cpio -p (passthrough) part to use 'cp -l --parents --target-directory=...' instead of tar; this gives us hard links, even on NTFS. But it needs GNU's cp, of course. -- Hannes ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: git clone questions relating to cpio 2007-10-02 6:11 ` Johannes Sixt @ 2007-10-02 6:23 ` Junio C Hamano 0 siblings, 0 replies; 14+ messages in thread From: Junio C Hamano @ 2007-10-02 6:23 UTC (permalink / raw) To: Johannes Sixt; +Cc: Johannes Schindelin, Reece Dunn, Git Johannes Sixt <j.sixt@viscovery.net> writes: > FWIW, I'm thinking about changing the cpio -p (passthrough) part to use > 'cp -l --parents --target-directory=...' instead of tar; this gives us > hard links, even on NTFS. But it needs GNU's cp, of course. Yeah, that's the reason it is not appropriate than cpio, even if we forget about Windows. ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2007-10-03 16:06 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2007-10-01 19:28 git clone questions relating to cpio Reece Dunn 2007-10-01 21:42 ` Johan Herland 2007-10-02 21:09 ` Reece Dunn 2007-10-02 23:42 ` [PATCH] Mention 'cpio' dependency in INSTALL Johan Herland 2007-10-03 0:14 ` Junio C Hamano 2007-10-03 6:09 ` Chris Larson 2007-10-03 7:40 ` Miklos Vajna 2007-10-03 8:27 ` [PATCH v2] INSTALL: Update section on external dependencies Johan Herland 2007-10-03 15:56 ` Johannes Schindelin 2007-10-03 16:05 ` Shawn O. Pearce 2007-10-01 23:23 ` git clone questions relating to cpio Johannes Schindelin 2007-10-01 23:32 ` Junio C Hamano 2007-10-02 6:11 ` Johannes Sixt 2007-10-02 6:23 ` Junio C Hamano
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).