Hi Lou,

yes, you can. That's what git is all about :) Git even has something called
"bare repo" where you save the hassle (and the space) for a working copy.

If you e.g had an USB drive, you could do an
git clone --bare https://github.com/gnuradio/gnuradio.git

and then pulling from that on your not-networked machine:
/home/lou/my-working-dir$ git pull /media/usbdrive/gnuradio.git
When updating GNU Radio, instead of re-cloning you could just git fetch the
newest branch.


However, I might assume that you're doing this because you have a machine
that you only use for deployment, so you most probably wouldn't want to
compile GNU Radio on that but actually wanted to just install it there. If
getting an image of that machine is feasible, look into just reproducing
that machine in a virtualization solution (e.g. Virtualbox) and just
overwrite the filesystem image of the non-networked machine.

Greetings,
Marcus


On Tue, May 27, 2014 at 5:59 PM, madengr <rfe...@everestkc.net> wrote:

> If I want to run GR (and keep it updated via git) on a non-networked
> machine,
> can I "git clone", copy the resulting gnuradio directory to a DVD, then
> "git
> pull" from that DVD (specifically the *.git that is created in the gnuradio
> directory?
>
> Thanks,
> Lou
> KD4HSO
>
>
>
>
> --
> View this message in context:
> http://gnuradio.4.n7.nabble.com/GR-and-git-on-non-networked-machine-tp48566.html
> Sent from the GnuRadio mailing list archive at Nabble.com.
>
> _______________________________________________
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>
_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to