Fossil (distributed software configuration management system)

From Andreida
Revision as of 20:34, 25 September 2019 by Andreas (talk | contribs) (Created page with "Homepage of Fossil: https://www.fossil-scm.org === Cloning Windows repository from Linux to itself === * Create ssh access with a key * Prepare a config file like the followi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Homepage of Fossil: https://www.fossil-scm.org

Cloning Windows repository from Linux to itself

  • Create ssh access with a key
  • Prepare a config file like the following
 Host mywindows
       HostName                192.168.0.144
       User                    Sabine
       Port                    22
       ServerAliveInterval     60
       IdentityFile           ~/.ssh/rsa-sabine.private
  • Do the cloning like this:
fossil clone -v ssh://mywindows/D:/test1.repo?fossil=D:/fossil test2.repo


Things to watch for:

  • Use the same Fossil version on both systems or at least don't have them differ to much in version.
  • Do not use ".exe" when you give the path to Fossil on the Windows system with "fossil=D:/fossil".