Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 460787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T22:54:32+00:00 2026-05-12T22:54:32+00:00

If, for security reasons, source code can only be stored on my home computer

  • 0

If, for security reasons, source code can only be stored on my home computer and office computer, which source control would be best IF the only method of transporting the code would be a USB key?

SVN or GIT?

note: there is no network connection between the 2 computers.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T22:54:32+00:00Added an answer on May 12, 2026 at 10:54 pm

    I recommend git.

    Either way you’re going to want the canonical repository on the USB key. In git you might do this:

    Make a “bare” repo on the USB key:

    $ mkdir /path/to/usbkey/myapp.git
    $ cd /path/to/usbkey/myapp.git/
    $ git init --bare
    Initialized empty Git repository in /path/to/usbkey/myapp.git/
    

    Bare repository directories are usually named “something.git” – you can name them whatever you want, but the “.git” convention is very widely used.

    Now you can clone the repo:

    $ cd /my/source/dir/
    $ git clone /path/to/usbkey/myapp.git
    Initialized empty Git repository in /my/source/dir/myapp/.git/
    warning: You appear to have cloned an empty repository.
    

    It will warn you that the repo is empty. Let’s put something in it:

    $ cd myapp
    $ echo "some stuff." > README
    $ git add README
    $ git commit -m 'added a README'
    [master (root-commit) 155b8ea] added a README
     1 files changed, 1 insertions(+), 0 deletions(-)
     create mode 100644 README
    

    And then push it to the USB key:

    $ git push origin master
    Counting objects: 3, done.
    Writing objects: 100% (3/3), 231 bytes, done.
    Total 3 (delta 0), reused 0 (delta 0)
    Unpacking objects: 100% (3/3), done.
    To /path/to/usbkey/myapp.git
     * [new branch]      master -> master
    

    When you get to your other computer, just clone the repo from your USB key again. You’ll have to make sure you remember to push your changes, but you know you’ll always have a backup because you’ll have three full copies of the repo whenever you’re synced up.

    An alternate way to do it with git is to only have one repo – the one on the USB key. You wouldn’t ever have to remember to push to it, but your code would only be on the key unless you used some other explicit backup system. That would be bad.

    If you were to use SVN on the USB key you would still have to remember to commit and pull your changes in the same way has having a bare git repo, but you wouldn’t get the free automatic backups that doing so with git gives you. Also you would miss out on all the other niceties of git, but that’s a whole other discussion. See Why Git is Better Than X.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 231k
  • Answers 231k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Use the following function like this: Image('/path/to/original.image', '1/1', '150*', './thumb.jpg');… May 13, 2026 at 2:13 am
  • Editorial Team
    Editorial Team added an answer Check you database schema to see if the field (referenced… May 13, 2026 at 2:13 am
  • Editorial Team
    Editorial Team added an answer I figured out the problem - there was a session… May 13, 2026 at 2:13 am

Related Questions

Summary I recently had a conversation with the creator of a framework that one
First, I will outline my issue in case someone has an alternate fix. The
At the moment I am getting a KrbException: Integrity check on decrypted field failed
For some reason every 3-5 days our web app loses the ability to open
Is there an open source filter that I can use on Tomcat to prevent

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.