I have trouble with my development flow..
I have two machines, F and O, both are offline and isolated. F is the main development machine and is connected to and SVN repo. O is also a development machine but without any form of version control. Code developed in F is tested in F then copied in O, tested again and modified, then again copied in F and committed to SVN.
This is done every week. It's tedious, prone to errors, and I lose every edit done on O.
My idea is perform git-svn on F, git clone that repo in a bare repo on usb, and use this bare repo to track changes on O, then pull from this updated bare on F and dcommit con the SVN.
I know it's not good but I have no better idea... Any suggestions?