git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* contrib/git-normal-to-bare.sh
@ 2013-05-27  4:54 Zenaan Harkness
  2013-05-28 20:07 ` contrib/git-normal-to-bare.sh Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Zenaan Harkness @ 2013-05-27  4:54 UTC (permalink / raw)
  To: git

I needed this quite a bit in the last few days, basic script but
serves my need. I think it would be useful for other beginners if in
$git/contrib/ source dir.

Just a start to a basic script. Needs more tests etc, but it's enough
to get newbies (like me) off to a reasonable start. Handles multiple
input dirs.

PLEASE CC me, as I am not subscribed.

(some SMTP server rejected attachment, so pasting below instead)

Thanks,
Zenaan


#!/bin/bash

# Change one or more normal repos into bare repos:
# See also https://git.wiki.kernel.org/index.php/GitFaq#How_do_I_make_existing_non-bare_repository_bare.3F

for i in "$@"; do
   echo; echo "----------------------"
   echo Processing $i

   repo="$i"
   repo="`basename $i`"
   tmp_repo="${repo}.git"

   # Insert here: may be exit if any spaces in repo fqn
   # Insert here: check for non-existent repo/.git dir
   # Insert here: check that we are not inside the repo
   # Insert here: add exit/do-nothing if fail to mv dirs etc

   mv $repo/.git $tmp_repo
   git --git-dir=$tmp_repo config core.bare true
   mv $repo ${repo}.bak
   mv $tmp_repo $repo
done

^ permalink raw reply	[flat|nested] 7+ messages in thread
* contrib/git-normal-to-bare.sh
@ 2013-05-27  4:00 Zenaan Harkness
  2013-05-27  9:02 ` contrib/git-normal-to-bare.sh Matthieu Moy
  2013-05-29  2:52 ` contrib/git-normal-to-bare.sh Felipe Contreras
  0 siblings, 2 replies; 7+ messages in thread
From: Zenaan Harkness @ 2013-05-27  4:00 UTC (permalink / raw)
  To: git

[-- Attachment #1: Type: text/plain, Size: 295 bytes --]

This question comes up every now and then - how to convert from normal
to bare, or vice versa.

This is just a start to a basic script to go one way. Needs more tests
etc, but it's enough to get newbies (like me) off to a reasonable
start.

PLEASE CC me, as I am not subscribed.

Thanks,
Zenaan

[-- Attachment #2: git-normal-to-bare.sh --]
[-- Type: application/x-sh, Size: 654 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-05-29  2:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-27  4:54 contrib/git-normal-to-bare.sh Zenaan Harkness
2013-05-28 20:07 ` contrib/git-normal-to-bare.sh Junio C Hamano
  -- strict thread matches above, loose matches on Subject: below --
2013-05-27  4:00 contrib/git-normal-to-bare.sh Zenaan Harkness
2013-05-27  9:02 ` contrib/git-normal-to-bare.sh Matthieu Moy
2013-05-27  9:43   ` contrib/git-normal-to-bare.sh Zenaan Harkness
2013-05-27  9:52     ` contrib/git-normal-to-bare.sh Fredrik Gustafsson
2013-05-29  2:52 ` contrib/git-normal-to-bare.sh Felipe Contreras

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).