Tagged Questions
The repo tag has no wiki summary.
13
votes
2answers
5k views
How to setup public git repositories?
I recently tried to setup git repo on a linux box and wasted about 10 hours with absolutely no results. There aren't any problems with compilation or anything like that, it's just configuration issue. ...
9
votes
2answers
5k views
Git error: src refspec master does not match any
I need to created a repo named carboncake
I tried this
cloned the gitosis-admin repository to my local machine
$ git clone gitosis@myserver.net:repositories/gitosis-admin.git
$ cd gitosis-admin
$ ...
9
votes
1answer
706 views
Change repo name in github
I wanted to change one of my github repo name, but got scared when a big red warning says so:
We will not set up any redirects from the old location
You will need to update your local ...
7
votes
2answers
257 views
Git - corrupted object?
My house just suffered a power-outage and now my git repo (which I was committing to when it happended) is reporting:
user@localhost$ git fsck
fatal: object 192e0282d23863ec80375a77011012ef8cb80f77 ...
7
votes
2answers
166 views
DVCS Repo Design - separate dev from stable using branches or separate repos?
I'm working on a "plan of action" at my job for migrating our source control from SourceSafe 6.0 (ugh) to a DVCS like git or Mercurial (preferably git ATM). Right now I am working on the future ...
6
votes
1answer
4k views
Android Repo init failed [closed]
I think i follow instruction from this site very carefully
http://source.android.com/source/downloading.html
but when i try this
repo init -u git://android.git.kernel.org/platform/manifest.git
i ...
5
votes
2answers
4k views
XCode4 add Repository Host Unreachable?
I'm trying to add a remote linux SVN repository to my project but when I enter the server address I get the message Host is unreachable.
I'm entering it like
svn://ip_address/myproject/
From ...
5
votes
3answers
3k views
Using Repo with Msysgit
When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error:
/c/Users/Andrew Rabon/bin/repo: line
...
4
votes
4answers
54 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 ...
4
votes
2answers
1k views
Checking out Android source from github
After going through all of these steps to check out the Android source code (Gingerbread branch), only to come to a compile error, I have decided to try to get the source code from a different source.
...
4
votes
1answer
168 views
How do I organize my Git repo [better title appreciated]
I'm facing the following problem and don't have an answer to it:
We have a repo that was cloned from an SVN repo. The project stored in that repo is something like a platform software that gets used ...
4
votes
3answers
139 views
Meaning of Github Ahead/Behind Metrics
In plain language (hopefully with a simple example), what do the ahead/behind metrics on a Github repo's branch mean?
And what are the implications for that branch and the attention it's receiving? ...
4
votes
1answer
270 views
What are the pros and cons of git submodule and Repo?
It just so happens that we share a library between 3 different mobile platforms. There is much debate within the office on what is the best tool to use to manage this library. Repo (Android) from what ...
4
votes
2answers
134 views
What are the options when working with Git submodules from which commits are made?
At work, we're working on a dozen Java OSGi bundles, each of which has its own git repository. All bundles will be, in the long run, pretty independent from each other, which justifies the individual ...
4
votes
1answer
114 views
What is the value-add of Repo (+git)?
The Repo (a wrapper of git) isn't described in much details, where I found it, except to say:
Repo is a tool that we built on top of Git. Repo helps us manage the many Git repositories, does the ...
4
votes
3answers
2k views
What is Repo and Why does Google use it?
When I wanted to get Android source code, I knew that I have to use "repo". So what is repo? Why do they use repo and not just use GIT?, and is there a GUI for repo that enables me to pause/resume ...
4
votes
1answer
546 views
Can two identically structured git repos be merged when they have never had any common history?
I have two small git repos. The projects both started from different points but converged to a very similar one (same file names, folder structure, etc). One is not a branch of the other, but one ...
3
votes
1answer
56 views
How to add an extra project into existing Android operating system source?
I am working on kernel development in AOSP, and the kernel repository that I work on is not a part of the operating system. It has an individual git repository. So when I try to push all AOSP sources ...
3
votes
2answers
409 views
Where did the EclipseLink/Maven repository go to? (again)
Yes, I know, the subject was asked before, but the repository moved again. Has anybody seen it? I would be much obliged.
3
votes
1answer
722 views
Importing a Git Project into Aptana with SSH Username and Password
I am attempting to setup a git repo for some source code, this is the first time I have used git - but I have made my self familiar with all of the concepts and command line basics which should get me ...
3
votes
1answer
101 views
how to collect release version in lots of git repositories
I have lots of git repositories which are managed by repo.
I know the "repo start" and "git push" is a solution to record the version of all repositories.
But I don't want to see lots of branches or ...
3
votes
1answer
610 views
error syncing with cyanogenmod repo
I have followed the instructions here to get the cynogenmod source on my system.
i was able to do the build successfully. I didn't do any local source changes. Now when i try to get the latest ...
3
votes
2answers
813 views
how to rename a repository on github?
I got some github repos that i now need to rename, but i can't anywhere find a solution for this except deleting the repo and setting up a new one. I can't delete the repos, because there are a lot of ...
3
votes
2answers
164 views
Git: File that must be distributed, but ignored / not reuploaded? [closed]
Possible Duplicate:
git: can i commit a file and ignore the content changes?
I have a simple problem, and I hope there's a simple solution.
Using Git (and Tower, great app), I have a ...
3
votes
4answers
460 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 ...
3
votes
1answer
74 views
Two close repos in Mercurial
I have a project I'm currently working on, which I am contemplating making open source, but I definitely want to keep it closed-source for the time being. Inside this project, I have a sort of ...
3
votes
2answers
2k views
How to resume repo sync
Can anyone please mention how to resume the sync command?
I followed the following steps:
$ repo init -u git://git.omapzoom.org/platform/omapmanifest.git -b eclair
$ repo sync
The sync took more ...
3
votes
2answers
3k views
How to display available branches in Android source tree?
Following directions on Android's main website to pull down sources, I'm looking at this command to initialize repo for the cupcake branch:
repo init -u ...
3
votes
1answer
795 views
How to use repo as repository on Hudson
I work on a project using repo to control over a hundred git repositories and Hudson as continuous integration server. The file structure of the project is like:
./.repo
./a/.git
./b/.git
./b/c/.git
...
3
votes
2answers
4k views
How do I share code via git with others having the Android repo?
I want to work on some Android code together with others and need to set up repository to be used locally within the team. However, it seems like repo doesn't let me do that. And neither does cloning ...
2
votes
3answers
279 views
getting android souce by repo
I'm trying to get the android source code. When I run:
$ repo init -u https://android.googlesource.com/platform/manifest
I got the following error:
Get ...
2
votes
2answers
86 views
Is an SSH Key Required to clone a public github account?
Does github require all cloning, of both public and private repositories, to use an SSH public key? Maybe a better question, is can git clone a github repo without a ssh key at all.
2
votes
1answer
1k views
Android - repo sync fails with fatal: Unable to look up android.git.kernel.org (port 9418) (Name or service not known)
repo sync fails with the following message:
$ repo sync
fatal: Unable to look up android.git.kernel.org (port 9418) (Name or service not known)
fatal: Unable to look up android.git.kernel.org (port ...
2
votes
2answers
61 views
In Mercurial, how do I view a file's history?
In Mercurial,how do I view a file's history? Much like as the repo explorer but instead of viewing the whole repo I would like to view only an specific file's history.
Thanks!
2
votes
1answer
171 views
How to run repo android on CentOS?
I try to run repo with "repo init -u git://android.git.kernel.org/platform/manifest.git" command after I have installed the repo on my CentOS. But, the error occurs like this
File "/root/bin/repo", ...
2
votes
2answers
1k views
How to download google source code for android
As you know, there is a github of several hundred projects in git://android.git.kernel.org/. I'd like to download them all in windows machine. According to Google's document,
To install, initialize, ...
2
votes
1answer
238 views
Android 'repo' documentation available?
The only documentation about googles 'repo' tool for android repository management was:
https://sites.google.com/a/android.com/opensource/download/using-repo
This was less than nothing: the ...
2
votes
1answer
149 views
Finding where my local Android repo working copy was derived from
After I have downloaded a gingerbread system build using the following commands, how do I later come back and find which Android tag it was derived from?
repo init -u ...
2
votes
3answers
169 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 ...
2
votes
0answers
590 views
How does the Android repo manifest repository work?
The Android source is a large hierarchy of git repositories. They are managed by a custom script called repo. Repo determines which git repositories to manage using a manifest.xml. The manifest.xml of ...
2
votes
2answers
57 views
Topic branches when working with a remote
I am currently using a github repo to manage my work. In general, if I create a topic branch that only I am working on, should I push it to the origin repo? What is the usual convention?
2
votes
2answers
164 views
Is there a standard/slick way to create arbitrary new remote git repos (not branches)?
I'd love to be able to clone a project from github, make some changes, then push it to my private git server, all with a few commands. (yes, I like to share things on github too, but sometimes it ...
2
votes
3answers
129 views
How to validate rebuilt svn repository
I rebuilt a huge svn repository (over 350GB - took more than 11 days to complete).
How can I validate the new repo against the existing one.
I tried "svn ls" on both and they are same - but that just ...
2
votes
3answers
167 views
How do I clone a repo to a remote server using ssh
I have two servers, A and B. A has the repo and can ssh to B. B is a new server I want to have the repo, but cannot ssh to A. I've tried copying the repo, create a remote to push, git clone with a ...
2
votes
1answer
1k views
How to download eclair sources with repo
ive tried both of the following:
repo init -u git://android.git.kernel.org/platform/manifest.git -b android-2.1
repo init -u git://android.git.kernel.org/platform/manifest.git -b eclair
Both give ...
2
votes
4answers
3k views
repo sync problem
i am a beginner to android development...
i was trying to get the sources for the 1.6 release... but the repo
sync operation keeps hanging...
i am pasting the last part of the message i get on the ...
2
votes
2answers
315 views
Is this the correct step-by-step and organization for creating an SVN repo with multiple projects and vendors?
I've read quite a bit of the Red Bean Software SVN Book, and some of the questions here on SO, but I want to make sure I'm going about this in the right way the first time around step-by-step before I ...
1
vote
2answers
80 views
Assistance needed in understanding a Python script
I am analyzing the repo script from Google (instructions at http://source.android.com/source/downloading.html)
The repo script is written in Python. There is a part in there that says:
if ...
1
vote
0answers
30 views
NetBeans and Git: I did install Git plugin but does not connect to repo after initializing, nor adds files
I have NetBeans 7.01 and installed the Git plugin from the plugins panel
After installation was completed and NetBeans restarted
I have right clicked on one of my projects, selected "versioning" and ...
1
vote
1answer
56 views
Set up offline Ubuntu Repository [closed]
I'm in a bit of a pinch! I have bunch of Ubuntu hosts (10.04)on a network that NEVER sees the internet. I need to be able to install software on these hosts but obviously do not have access to an ...