I need to run git operations from a laptop (on a vpn) but I can’t build from the laptop, I can only build from a host that is only accessible on the vpn.
So I can only git pull / git push from the laptop, but I can only build / run / test from a remote host.
Linux on both sides. What’s the best solution here?
Detach the laptop’s head, then git clone from it over SSH on your build server. When you’re done, git push will update your laptop’s branches, then you can git push origin the relevant branches on your laptop.
I’ve been considering rsync
I need to run git operations from a laptop (on a vpn) but I can’t build from the laptop, I can only build from a host that is only accessible on the vpn.
So I can only git pull / git push from the laptop, but I can only build / run / test from a remote host.
Linux on both sides. What’s the best solution here?
Why can you not run git on the server? If it’s a credential thing, you can forward it through the SSH connection.
Detach the laptop’s head, then
git clone
from it over SSH on your build server. When you’re done,git push
will update your laptop’s branches, then you cangit push origin
the relevant branches on your laptop.I can’t run git operations on the server.
If you can SSH into a remote host, you can git push to it directly from your laptop.