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

  • SEARCH
  • Home
  • 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 6227689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:15:56+00:00 2026-05-24T09:15:56+00:00

I’m a web developer. My company has a dev server that all of us

  • 0

I’m a web developer. My company has a dev server that all of us work directly on. There’s only 3 of us, all working on different projects, so there’s no issue with people overwriting each other’s work. Because we’re so small, no one has set up any kind of version control, and I’m not in a position to insist on it for all of us. However, I recently broke some of my own code and can’t get it working again, and this makes me want to set up some kind of version control.

Here’s how I’d like this to work:

  1. Make a local copy of my project that exists on the dev server.
  2. Make changes on the dev server.
  3. After every major change, commit to my local copy.
  4. If the new change broke the code on the dev server, be able to grab the previous version from the local copy.

Because I’m frequently working in 6 or more files at a time, it’s not feasible for me to just manually create backups of each file before making any changes.

I’ve looked at GitBox and Versions, but am unable to tell if either of them will allow me to make a local copy of a remote project that isn’t using some kind of version control.

Does anyone have suggestions for a good GUI version control system for Macs that will let me accomplish what I’ve outlined above? (The main issue is step #1 – making a local copy of a project that isn’t already using a version control system and being able to update the local copy with a single action.)

  • 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-24T09:15:57+00:00Added an answer on May 24, 2026 at 9:15 am

    With the mapping available via (Transmit)[http://www.panic.com/transmit/] you can pretty easily do what you are looking for.

    One option that would give you the GUI interface is just to copy the files manually each time and then use GitBox to create a new commit each time you wanted to store a set of changes. That would work, but it would get tedious quickly. Tedious stuff gets neglected so not the best option.

    A better solution would be to setup a little script that would do the copy and commit for you. Check out the following as an example:

    #!/bin/bash
    
    ### SETUP:
    
    ### Set the path to the remote mapped directory
    SOURCE="/Volumes/your/mapped/folder/path"
    
    ### Set the path to your local folder (this must already exist)
    REPOS="/Users/your-username/your-storage-folder"
    
    
    ### MAIN:
    
    ### Move into the respository directory
    cd $REPOS
    
    ### Initialize the repository if it doesn't exist
    if [ ! -d "${REPOS}/.git" ]; 
        then 
        git init
    fi
    
    ### Now copy down the files
    rsync -a --delete --exclude '.git' $SOURCE/ $REPOS/
    
    ### Add all the changes to git staging
    git add .
    
    TIMESTAMP=`date`
    
    ### Now commit the changes
    git commit -am "Committed: $TIMESTAMP"
    

    Assuming you have git installed on your mac, that should work if you:

    • Create a new text file with a “.command” extension (e.g. “archive-site.command”) and paste that code into it.
    • Change the “SOURCE” and “REPOS” paths to the values to actual paths on your machine.
    • Use chmod u+x archive-site.command to allow it to be executable.

    From there, all you would have to do is double click on that file in the Finder and it’ll sync your local folder with the contents of the server’s directory and then make a new commit in the repository. It’s basic and a bit unorthodox, but it will give you a some level of version control protection without too much hassle.

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

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
Seemingly simple, but I cannot find anything relevant on the web. What is the
I have text I am displaying in SIlverlight that is coming from a CMS
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I am trying to understand how to use SyndicationItem to display feed which is
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out

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.