All of lore.kernel.org
 help / color / mirror / Atom feed
* Tip: avoiding net overhead using git over sshfs
@ 2008-10-23  1:26 Felipe Carvalho Oliveira
  2008-10-23  8:32 ` Michael J Gruber
  2008-10-23  9:00 ` Matthieu Moy
  0 siblings, 2 replies; 5+ messages in thread
From: Felipe Carvalho Oliveira @ 2008-10-23  1:26 UTC (permalink / raw)
  To: git

Use git over sshfs is not so good, but is an option for people that
don't have shell acess to the server/hosting like me.

# mounting
sshfs -o workaround=rename <user>@<host>:/home/<user>/  <mount_point>
cd <the_directory_of_your_project>

# we will move the .git directory to the local filesystem
mv .git ~/.my_project_git
# and create a symlink to the local .git
ln -s ~/.my_project_git .git

Done!

Now you can open gitk instantly ;-) and don't need to have the entire
.git thing on a remote filesystem.

         Felipe (from Brazil, my english skills aren't so good :-)

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

end of thread, other threads:[~2008-10-23 12:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-23  1:26 Tip: avoiding net overhead using git over sshfs Felipe Carvalho Oliveira
2008-10-23  8:32 ` Michael J Gruber
2008-10-23 11:51   ` Felipe Carvalho Oliveira
2008-10-23 12:54     ` Johannes Sixt
2008-10-23  9:00 ` Matthieu Moy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.