On Dec 4, 6:15 am, deepak <kannan.dee...@gmail.com> wrote:

> i have a folder with a bunch of git repos, when i copy a repos to an
> external disk by running the unix command 'cp -r', then git status
> shows that all files have been modified even though i see the fetch-
> url and the 'git log'. if i do the same thing on the same disk it
> works.

I did not face such problem myself, but I can offer two solutions to
try:

1) Git repo on a file system is still a Git repo, so you can just push
   to it:
   $ cd /tmp/bkup
   $ git init --bare
   $ cd ~/devel/myrepo
   $ git push --mirror file:///tmp/bkup

2) Try to use git-bundle command for backups.

Also try to use the "-a" option to the cp command -- this is how
it actually supposed to be used. Or try good old tar.
As far as your disk space is not an issue, I'd stick to the first
colution.

--

You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.


Reply via email to