A bare git repository is so named because it has no working directory; it only contains files that are normally hidden away in the .git subdirectory. In other words, it maintains the history of a project, and never holds a snapshot of any given version.
1
vote
1answer
122 views
git repo on production server: What is the step after setting up the bare repository?
I have created a bare git repo on my EC2 instance, and I have pushed a branch from my dev machine to it. I can run git log on the server now and it looks up-to-date with everything.
The dev machine ...
0
votes
0answers
17 views
How does gihub merge in a bare repo (for pull requests)?
It is not possible to merge code in a bare repository (at least not when I try it locally).
When you go through with a pull request on github (one without a forked repo but only a request to pull in ...
0
votes
2answers
156 views
Git bare repository has master branch checked out?
I'm quite sure this question has been asked before but I dont seem to find it. So sorry if it is a dublicate.
I have a bare repository lets call it project_x.git, if we check the config file it ...
2
votes
2answers
47 views
Verify a bare Git repository has data
How does one verify that files were pushed to a bare repository correctly? Since bare repositories have no working tree, you obviously can't do a simple git log because it isn't picked up as a git ...
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 ...
0
votes
1answer
100 views
When pushing branches and tags, get error: cannot spawn git: no such file or directory
I have an existing, bare, Git repository created from importing our source and history from CVS. I make a mirror, using:
git clone --mirror git://aserver.adomain.com/myrepo
Then, I want to push ...
2
votes
1answer
43 views
Git mailmap on bare repository
I set up a .mailmap file in my git repository, so now running
git log --format="%aE"
in my local repo correctly maps all email addresses as specified in the .mailmap file. But after I push to my ...
0
votes
2answers
59 views
Having a remote test repository with git
In my current set up, my development server has a bunch of bare git repositories from which me and some other users push to. However, now, I'd like to integrate PHPUnit testing on the server itself.
...
0
votes
1answer
85 views
Git Repo Auto-commit and Push
I have a scenario where I have a repo where users access the files directly, they don't know git exists, and make changes to what are essentially text files.
I have that repo cloned. So when a commit ...
0
votes
2answers
73 views
How to use Git post-receive hook on a remote machine (instead of locally)?
We are using a Windows development server for hosting my Git bare repo. We use direct file access to the server (no SSH, GIT or HTTP). This works excellent, and the team is happy.
We are now trying ...
3
votes
1answer
86 views
Using git to manage a production web site?
I have a web site with about 15,000 files on a production server. A remote developer is now doing the bulk of the work on the site, but I occasionally need to make some edits also. It is apparent ...
0
votes
1answer
52 views
git - shared repository sgid
I'm using a bare sharedRepository to allow a group of developers to push.
In order to keep the good file group on pushes, I changed SGID of objects
$ sudo chmod -R g+s my_repository/objects
If it ...
1
vote
1answer
54 views
Using an intranet server as gateway and proxy mirror for accessing a public remote
Backgroud:
We have an interesting question. We're trying to fetch a git repo from
public accessible location into our development server (server), which
has internet to both corporate network ...
1
vote
1answer
99 views
Git: importing from bare or from non-bare
I have been hosting bare repositories in my Home local server (Mac Mini).
It has been performing really slow (maybe due to lack of git optimization for large files)
So to solve this problem, I'm ...
1
vote
3answers
53 views
where are project files in remote repo in Git?
I start to use Git and my project VCS.
I have created a remote repo using
git init --bare
in /codes-repo and push changes from local repo to there. then I want to move project files from there to ...
3
votes
2answers
164 views
git server with eclipse project
I have a computer running Ubuntu Server. On this computer I have a user named mattgit.
I have another computer running Windows 7. I develop Java applications in Eclipse on this computer.
On my ...
3
votes
2answers
227 views
Is there a git activity log?
Something went really wrong here. Allow me to give the background.
Today I try to push to our company default bare msysgit windows server and get a dreaded error message duplicated everywhere in SO ...
0
votes
3answers
190 views
Getting a working copy of a bare repository
I have a server on which I have a bare repository for pushing. However, my server needs to have a working copy of the master branch.
How do I get a working copy and that only from a bare repository?
2
votes
2answers
115 views
Git main repository update only if all tests pass, how to do?
I am trying to create git hook on update in main git repository. I want to prevent pushes that break any tests. How to get in bare repository code of project that will be after update to run tests for ...
1
vote
2answers
1k views
Bare repository permissions.
I setup git on an ubuntu server and I was pushing the local repo to the server and getting the errors below. When I change the permissions of the two folders it works. I just want to understand why ...
0
votes
1answer
47 views
Git remote server none-bare without user
Ok, check this out. I have a mac osx server with git installed. We use it for collaborating on projects. What we want is to be able to push to none-bare repository on the server so that we can view ...
2
votes
3answers
2k views
How do I convert a bare git repository into a normal one (in-place)?
I have a bare git repository, but need to access and browse its contents over ssh (in a file manager like user experience).
I assume I could clone it:
git clone -l <path_to_bare_repo> ...
1
vote
2answers
768 views
Git - did init bare in wrong directory
I ran the git --bare init in a wrong directory(in the server). I see the files branches, config, deps etc., in that directory.. How do I undo it?
7
votes
2answers
923 views
Git submodule on remote bare
I've setup my environment so I can push to a remote bare repository, I used these commands to setup the remote repository:
$ mkdir ~/website.git && cd ~/website.git
$ git init --bare
And
$ ...
0
votes
2answers
1k views
Git bare repo with multiple branches
I want to make a git bare repository with multiple branches (master, develop, release, etc..). So question is if it is possible to checkout the bare repository or how to switch among the branches ...
7
votes
4answers
869 views
Git, How to change a bare to a shared repo?
So i this is how i set up my project:
git init --bare
Later I learned that if you want to work on a project with multiple users this is how I should have done it:
git init --bare --shared
Now I ...
1
vote
1answer
314 views
Update a Git Repository through a Git Hook in Python
I'm using python to write a post-receive hook that will hopefully serve for automatic deployment of all of the updated files in my project. Essentially, every time the "deploy" branch is pushed, it ...
3
votes
1answer
949 views
Does git log --branch have a different behaviour on normal and bare repositories?
I'd like to use the git log command to extract the list of changes from a repository since a given date on a specified branch.
For the purpose I found the following syntax which seems to work fine:
...
2
votes
2answers
1k views
git merging branches in a bare repository
I would like to create the following setup for my git repos:
I currently have a local git repo with all my working files. I would like to be able to setup a central bare repository, and two other ...
1
vote
1answer
162 views
Git: How to check which files exist (and their content) in a shared (bare) repository?
I created a shared repo by:
git init --bare my_project.git
At some point, another user updated this repo with his changes (using git push).
How could I check which files are exist now in the ...
0
votes
2answers
72 views
Trouble understanding how best to setup the bare repository with CMS on server
I have a DEV server running our CMS and I would like to pull from and push to a repository in the CMS install - but I get errors because I'm trying to push to a non-bare repository (I've cloned this ...
3
votes
2answers
880 views
GUI for bare git repo
Is there a GUI for a bare git repo directory ( there is no working tree anywhere ) that I can:
Check logs
See the whole working tree structure for any commits
Regarding to why I need this:
My git ...
1
vote
2answers
423 views
How can I get the GIT_PS1_SHOWDIRTYSTATE to not run against a bare repo?
So I've set up bash autocompletion for my install of git, and that rocks. However, I've got a bare repo that I occasionally have to directly interface with (git reset, for example), and any time I cd ...
2
votes
2answers
1k views
git add remote tracking branch to bare repo
I have a bare repo that was cloned from git.drupal.org.
I have cloned from this bare repo to various different websites.
From each of these, I push a site-specific branch onto the bare repo.
E.g. ...
14
votes
4answers
4k views
Writing a git post-receive hook to deal with a specific branch
Here's my current hook in a bare repo that lives in the company's server:
git push origin master
This hooks pushes to Assembla.
What i need is to push only one branch (master, ideally) when someone ...
0
votes
1answer
215 views
GIT bare with a remote SVN reference. How I update?
I have a bare git repository with a remote reference to a SVN repository.
Also I have a cloned repository from this.
I want to have this bare repository always synchronised, I'm doing a git svn fetch, ...
3
votes
1answer
343 views
git init --bare on git 1.5.4.3
We have got git 1.5.4.3 (Version from Feb'08) on our server. As it seems, there was no option --bare back then.
How can I create a bare repository then?
Creating it locally and scp'ing it to the ...
1
vote
1answer
815 views
Is there a way to add submodules to a bare git repository?
I have some repos on my server with gitosis. One of them is Main, it's including all the others. I work with them from my local machine, and submodules hierarchy was built on my local machine. Gitosis ...
0
votes
1answer
68 views
Git post-update and conflicts
I currently have a following Git workflow local normal git repo -> remote bare git repo -> staging normal git repo. My bare repository has a post-update hook, which
looks like this:
cd ...
0
votes
1answer
597 views
git add to bare repo
I greated a repository with: git init --bare on a server and I want to push a branch to it.
git push origin Dev
But I get
remote fatal: you are a branch waiting to be born.
What am I doing ...
1
vote
1answer
639 views
Soft reset git bare branches
I have a set of GIT repositories that I always have different activities on differrent branches and they are all pushed to github
the activities are linked to Redmine and would trigger Redmine to ...
2
votes
3answers
924 views
How to create a git clone for viewing only
We're using git as our VCS for a small development team. I keep the main repository on our server as a bare git repository.
Management and people not involved with the project need to be able to see ...
2
votes
3answers
459 views
What are the purpose of the bare git repositories in .repo/projects/ created by the Android repo script?
The Android source is managed by repo. When syncing using repo, a directory called .repo/projects/ is created, which contains all the git repositories also checked out directly in the current working ...
3
votes
1answer
461 views
How to create reflogs information in an existing bare repository
As you might have known that by default, git doesn't enable reflog updates for new bare repositories. The problem is, I have a long history repository but it was created before I set the flag ...
7
votes
1answer
4k views
“fetch --all” in a git bare repository doesn't synchronize local branches to the remote ones
I'm trying to synchronize periodically a git bare repository, my local branches are created using the "--track" option. here is my config (without unnecessary things):
[core]
bare = true
...
17
votes
4answers
3k views
What's the -practical- difference between a Bare and non-Bare repository?
I've been reading about the bare and non-bare / default repositores in Git. I haven't been able to understand quite well (theoretically) about the differences between them, and why I should "push" to ...
5
votes
3answers
3k views
How can I use git-archive to include submodules from a bare repository
I'm in the process of setting up a deployment script. The basic process is:
Push changes to a bare repository on the server
Then based on new tags will create a new folder for the release.
Use git ...
35
votes
4answers
8k views
How can I uncommit the last commit in a git bare repository?
Taking into consideration that there are several git commands that make no sense in a bare repository (because bare repositories don't use indexes and do not have a working directory),
git reset ...
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 ...
181
votes
9answers
52k views
How to convert a git repository from normal to bare ?
How can I convert a 'normal' Git repository to a bare one?
The main difference seems to be:
in the normal git repository you have a .git folder inside the repository containing all relevant data ...

