Tagged Questions
0
votes
1answer
30 views
How to protect folder containing a git history
I'm using git to keep track of writing projects and other personal work on my own PC (running a version of Ubuntu).
Although my work is being version controlled, I am worried I might one day lose the ...
-1
votes
0answers
46 views
Is there a GitHub backup service? [closed]
Is there any service that will automatically backup a repo from GitHub? This could happen with each push or on a daily basis.
Why?
Although GitHub is not supposed to lose data, it could happen. ...
0
votes
1answer
24 views
GIT: restoring server with remote git repository - how to act right?
The machine where our remote-repositories are stored crashed. Currently it is restored with a two-day old backup.
Can you give us some advice on what to do?
In our opinion, all we need to do is push ...
0
votes
1answer
77 views
How to separate/decouple git repository into a different location
My request may look strange but it'd make more sense after I explain why I'm doing it.
So I have my person projects under /path/to/myprojects. Underneath maybe C, Perl, Shell, Tcl, etc. Now I want ...
0
votes
3answers
67 views
Does copying the Git bare repo change the log?
I'd like to try out a few things with git and I don't want to screw anything up in the working repository.
To try to keep things safe, I've made a copy of the bare repo that I work from and from this ...
2
votes
1answer
267 views
Alternatives to Git for Minecraft server backup/version control
Currently my Minecraft server, residing on a CentOS server, uses Git as a means of version control and 'catastrophe-management'. This works very well except for two issues:
It's big. Because the ...
-1
votes
3answers
339 views
Git vs SVN: Performance and Storage
I want to use one of Git or SVN (Subversion) as a backup system. The only important thing for me is the Storage and Performance of the system. I searched around and most of the results I found were ...
1
vote
5answers
96 views
A good way to backup code with git
I have just read Version Control is not a BaCkUp system (pdf).
and I wonder if there is a good way to backup my code into a remote server at the end of the day (in case something happens to my ...
0
votes
3answers
65 views
Git as a repo that doesn't have version control?
Okay, here's a weird one!
I have this nifty little 32gig thumbdrive that I keep in my wallet that contains all the latest of EVERY file I need to go about life on a computer. It contains all my BASH ...
1
vote
0answers
73 views
Back up a git remote repositore with git hooks
I have some puzzle peaces and it would be great if someone could help to master the pieces together to have a whole picture.
I have a couple of devs who develop on serveral git repo's locally and ...
1
vote
1answer
622 views
Add all visual studio projects to GitHub and sync them through SkyDrive
The title describes almost all my question. I have a lot of VisulStudio projects which I want to add to a Git repository. I have no experience which Git. I tried drag & droping the "Projects" ...
2
votes
1answer
70 views
Git diff to alert hacks [closed]
We're using Git for source control and Beanstalkapp.com as our remote repository. Using Beanstalk, we're able to deploy to our Rackspace Cloud Sites account via sftp (they do not support SSH). While ...
4
votes
2answers
88 views
retro create a git repository from backup dirs
I have several backup dirs I want to put them into git.
The dirs are:
web_backup_2012-03-07
web_backup_2012-06-03
web_backup_2012-06-21
web_backup_2012-06-25
web_backup_2012-07-02
...
1
vote
2answers
239 views
Backing up and restoring gitosis and other git repos
I am trying to backup gitosis and a repository to a backup tarball and then restore and test on a blank system to ensure that in case of complete server failure that I can get a new system running ...
4
votes
1answer
137 views
Git as deployment, development and backup
I've been using Git for over a year now, but I feel that I need to fine tune my workflow. Hope you can help! Right now I have 5 computers:
3 DESKTOPS/DEVELOPERS: Where we do all the work and when ...
6
votes
4answers
961 views
Incremental backups with git bundle, for all branches
What is the easiest way to do incremental backups of a git repository with git bundle?
If I just wanted to backup a single branch, I could do something along these lines:
git bundle create foo ...
1
vote
1answer
175 views
Git and Dropbox - local repo
I have read noumerous threads and watched many videos on combining Dropbox and Git functionality.
One such thread is this: Using git+dropbox together effectively?
Here is what i want to do:
I am ...
0
votes
4answers
138 views
Use git as a means to sync/backup two macs [closed]
Here's my idea (which I'm currently testing as we speak):
I just got a new macbook pro to use on the road, but I now have the problem of keeping it in sync with my main iMac easily. I'm very familiar ...
1
vote
1answer
389 views
restore all refs from git bundle
How to restore all remote branches from backup (git bundle).
Backup:
$ git bundle create /tmp/dp --all
$ git bundle list-heads /tmp/dp | head -n5
f37c9fc7f0ce121568f42fb01390b1862c67f308 ...
1
vote
2answers
51 views
Git automatic tracking of directory
I have a piece of (someone else's) software, which has an annoying tendency to every now and then destroy its workspace by corrupting important files if there's is a hard shutdown while it is running. ...
2
votes
2answers
110 views
Nested and independent GIT repos, for Backup, how?
I want to use GIT as a Backup solution.
I have a windows shared network in my Company and a Centos Server.
Each user have a unique shared folder, where is located all files of user. We have 2 ...
2
votes
2answers
89 views
what means “git fully backup”?
One benefit of git is "every one can has full backup" as DVCS with respect to SVN.
I don't understand well.
Eg, John has a git repo with his branch branch_a, Peter has another git repo with branch_b.
...
1
vote
2answers
204 views
how to create a backup at git
i am new to git. i read a few links on how to create a git repo and maintain a back up there but couldn't get any concrete material.
what i have to do is that i have a server written in php which ...
2
votes
1answer
1k views
restoring git repository from bundle backup
i created backups of my git repository like in Backup a Local Git Repository proposed
with
git bundle create /tmp/foo-all --all
I can see all refs are in there, including a remote ref created by ...
0
votes
1answer
438 views
Backing up from local repo to a remote services such as Bitbucket
I want to use a repo on a remote git service as a backup for a locally created repo. The remote service is namely Bitbucket, but the question can apply to others.
I can't create a bare repo on ...
0
votes
1answer
92 views
How can I backup a website with multiple folders via Git?
I have a website with multiple folders that have different purposes on the site. Think
/
/forum
/drupal_site
/contact
/about_us
Now how should I handle backups for these? Should each folder ...
0
votes
2answers
53 views
How can I get back my changes from a backup?
I was having problems with my Mac and decide to format and reinstall everything. I make a copy of my projects to other machine hoping that git will preserve my changes. Now I copy my projects back and ...
8
votes
1answer
512 views
Are concurrent git pushes always safe if the second push only has fast-forwards from the first push?
I want to automatically push commits in the post-receive hook from a central repo on our LAN to another central repo in the cloud. The LAN repo is created using git clone --mirror ...
2
votes
3answers
161 views
Attaching a binary to a Git tag
I'm developing mobile apps (iPhone, Android, and Blackberry) and recently converted from SVN to Git.
In SVN after I do a release, I tag the relevant branch/revision to ensure its state is preserved ...
3
votes
1answer
162 views
Add/commit to bare repo from a non-git folder
I'm trying to hack git to do backup for me. The data is so large relatively and I cannot afford a working copy and a git repo on any of my hard drives.
So, I need to git add/commit to a bare repo ...
1
vote
2answers
235 views
Using Git with a huge 200GB repository?
I'm considering using Git for backup purposes - I want to backup my files to an external drive, then commit everything on the backup drive. That way, I can still access old files if needed. My backup ...
2
votes
2answers
417 views
git for important file backup - why not? [closed]
Say I want to use Git to back up my PC.
I don't care about a full system backup. I don't mind having to reinstall things if my hard drive crashes. I just want to back up my data files, which are ...
4
votes
2answers
1k views
git setup for backup & sync between 2 computers
I'm new to git. Need some advise to know if my setup is correct. Please read below :
I'm using git for 2 separate projects on my development computer and want to backup everything on a USB drive ...
1
vote
1answer
453 views
Xcode 4 / Git - backup
What is the most simple way to backup my project? Can I just copy XCode project (with hidden .git) directory to USB stick and copy it back when needed?
1
vote
6answers
670 views
Git for personal backups?
I am looking for a way (not a service, a (set of) tool(s)) to make personal backups (mostly photos & videos) using a solution existing in whatever OS. That's why git sounds interesting.
The thing ...
2
votes
4answers
392 views
Backing up a DB with Git - a good idea?
The way I see it dumping a PostgeSQL DB into one big SQL file and then committing and pushing to a remote Git repo can be a terrific backup solution: I get a history of all versions, hashing, secure ...
2
votes
3answers
263 views
overwritten git repo with old version of git repo, game over?
Have I totally lost all my commits? I know it was dumb, and for that I am sorry, but it was an innocent mistake, not thinking a workflow through properly.
EDIT
the overwrite was a manual drag and ...
0
votes
2answers
310 views
GIT mirror with FTP
is it possible to mirror GIT repository on an FTP server? If not, what is the best solution to backup repositories with FTP?
Thanks in advance,
Etam.
2
votes
2answers
575 views
Site Backup on Flash Drive with Git
I'm new to git, so forgive me if I've missed the boat completely. I am coding sites on my laptop and in addition to Dropbox I would like to have a backup of everything that I've done stored ...
9
votes
5answers
6k views
Fully backup a git repo?
Is there a simple way to backup an entire git repo including all branches and tags?
1
vote
1answer
201 views
git: recovering server/remote repository from backup
today i lost my remote repository due to a server crash. i installed a backup which was 2-3 hours old. unfortunately i made some pushed after the backup creation and now the master branch of my local ...
0
votes
3answers
317 views
How to make quick backup of untracked files which I want to delete by git clean?
I have a lot of untracked files. I am pretty sure that most of them I can delete, however... you know, backup could be helpful ;)
What you are doing in similar situation?
3
votes
3answers
2k views
How do I set up a local Git repository and a local backup directory?
UPDATE
I set up the two Git repositories following the directions from one of the answers below, but the back-up directory doesn't have copies of the files in the working directory. This is what I ...
1
vote
1answer
153 views
How to migrate from bazaar working copy to git
Recently my Bazaar server broke.
I'm left only with working copy of my branch.
Is there possibility to migrate this working copy to git repository?
Do I have chance to restore history of commits?
...
3
votes
2answers
496 views
mysterious vanishing branches in git
Here are some git actions I performed. As you can see, I made a new branch, modified my files, and then committed the changes. After changing back to another branch, hoping to merge, the branch I was ...
0
votes
1answer
559 views
Backup all branches in a git repository keeping what has been rebased and forced
I am looking for a solution to backup multiple shared git repositories, each with multiple branches, and some of the branches get rebased and forced (I know that's against best practices, but it is ...
7
votes
3answers
926 views
Git bare - what to backup?
I'm sorry if this is covered elsewhere, but I can't find the answer.
I have a bare repo, called bare.git which is the repository from which are cloned the dev repos. It all works well.
I want to ...
2
votes
1answer
1k views
Managing Git Users and Passwords
I've been using Git to keep a repository of a project on a separate server. Currently to push things to the repository after a commit I do
git push
and then I am asked for the password for the ...
1
vote
2answers
364 views
Git as a remote backup and update system
I have a remote device which I access over a wireless and intermittent link.
The device logs daily data, and I'd like to be able to get all updates in a robust way.
I thought of using git for the ...
2
votes
6answers
1k views
What is the best way to back up an entire git repository on external disk?
So I want to be able to back up a git repository that may have several branches onto an external hard drive and then be at a later time be able to copy it back onto my local machine and work with it ...
