Tagged Questions
The bare tag has no wiki summary.
61
votes
6answers
17k views
Git: Convert normal to bare repository
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 ...
13
votes
3answers
3k 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
2answers
390 views
How can I remove the working copy from a Mercurial clone?
When cloning a repository with mercurial you can pass the -U/--noupdate flag to create a clone with no working copy. Can I remove the working copy if I forget to pass this flag at clone time? And if ...
7
votes
1answer
5k views
What's the most straightforward way to clone an empty, *bare* git repository?
I've just finished cruising the Google search results that contain all the email rants about how stupid it is that git can't clone an empty repository. Some kind soul even submitted a patch. Until ...
4
votes
4answers
47 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 ...
3
votes
1answer
43 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
825 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
...
1
vote
1answer
97 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
2answers
114 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
1answer
198 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
2answers
160 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
75 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 t have this bare repository always sincronized, I'm doing a git svn fetch, ...
0
votes
1answer
127 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 ...
0
votes
1answer
26 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
290 views
Websercice that has SOAPBinding.ParameterStyle.BARE requires all method (include non WEBMETHOD) has only one parameter as input
i am using cxf 2.x to develop a webservice.
Here is my web service class
@WebService(name = "XXXWS", targetNamespace = "http://www.XXX.com/XXXWS", portName = "XXXWSPort", serviceName = ...
0
votes
1answer
152 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 ...
0
votes
3answers
119 views
Is there any legitimate use for bare strings in PHP?
This question got me thinking about bare strings.
When PHP sees a string that's not enclosed in quotes, it first checks to see if it's a constant. If not, it just assumes it's a string and goes on ...