Tagged Questions

83
votes
2answers
24k views

How to git-svn clone the last n revisions from a Subversion repository?

Problem How do you create a shallow copy with git-svn from a Subversion repository, i.e. how do you pull only the last three revisions? The git clone command can get the last n revisions from a Git ...
54
votes
2answers
8k views

Difference between a branch, fork and clone in git?

Can someone help me understand the difference between a branch, a fork and a clone in Git?
15
votes
2answers
4k views

Git svn clone: How to defer fetch of revision history

I often have the case that I want to work on a SVN repository right away. But an ordinary git svn clone [url] also clones the entire history. So I want to speed things up. The first part is to fetch ...
14
votes
3answers
11k views

GIT clone repo across local file system

I am a complete Noob when it comes to GIT. I have been just taking my first steps over the last few days. I setup a repo on my laptop, pulled down the Trunk from an SVN project (had some issues with ...
9
votes
2answers
3k views

git-clone and post-checkout hook

According to the manual, the post-checkout hook is run after a git checkout (just as expected) but also after a git clone (unless you pass --no-checkout). Very well, now, considering the following: ...
8
votes
5answers
1k views

How to complete a git clone for a big project on an unstable connection?

I am trying to git clone the LibreOffice codebase, but at the moment I have an internet connection by mobile phone of about 300kbps and it's just anything but stable. I can get the connection back any ...
7
votes
4answers
1k views

Clone just the stable and one other branch in git?

I'm just getting started with git and I have a question. My app has 10 other developers working on it, each one having their own branch like dev_XXXXX. So if I do a clone of the repository, do all of ...
6
votes
3answers
2k views

How to update a git clone --mirror?

I have created a git repository to mirror a live site (which is a non-bare git repository): git clone --mirror ssh://user@example.com/path/to/repo Now, to keep this mirror clone updated with all ...
6
votes
2answers
661 views

Files showing as modified directly after git clone

I'm having an issue with a repository at the moment, and though my git-fu is usually good, I can't seem to solve this issue. When I clone this repository, then cd into the repo, git-status shows ...
5
votes
2answers
169 views

git clone vs copy paste, what's the difference?

as stated in the subject note: the git clone i mean is the git clone without any option, the one which is performed by doing "git clone /C:/my_origin_folder"
5
votes
1answer
270 views

What is the difference between clone and mkdir->cd->init->remote-add->pull?

After setting up a repo on Github, there seems to be two ways to pull that repo into a local repo. Firstly, I could create a directory, initialize a blank repo, add a remote and then pull changes ...
5
votes
2answers
987 views

Can I “disable” git-clone over http?

I'm using git to manage a tiny project. I've been performing all of my transactions (clone, push, pull, etc) through SSH, but recently ran git-update-server-info because I wanted to experiment with ...
4
votes
2answers
74 views

How do I clone a large Git repository on an unreliable connection?

I want to get clone of LibreOffice. Here's what written on official website: All our source code is hosted in git: Clone: $ git clone git://anongit.freedesktop.org/libreoffice/core # (browse) ...
4
votes
1answer
260 views

pause git clone and resume later?

Is there a way to pause git clone and resume it later? I'm cloning a really big repo (around 2GB) and my PC's been turned on for more than 40 hours. I have school to catch later, I don't want to leave ...
4
votes
1answer
1k views

Is git clone --depth 1 (shallow clone) more useful than it makes out?

The --depth 1 option in git clone: Create a shallow clone with a history truncated to the specified number of revisions. A shallow repository has a number of limitations (you cannot clone or fetch ...
4
votes
3answers
1k views

Retrospectively add --recursive to a git repo

If you git clone with --recursive, you can get all the git submodules too. If I've forgotten to add this magical flag when cloning, as can happen, how do I now go and get any submodules? ...
4
votes
2answers
226 views

Cloning a Git repo without the .git directory

Is it possible to clone a repository without git creating a .git folder inside the local copy of the repository? Sort of like a read only functionality?
4
votes
3answers
3k views

How to stop git via ssh on windows from resolving the wrong path?

I have a windows 2003 box with an ssh server setup. I have msysgit (git version 1.6.2) installed both locally and on the server. The server has the following absolute path to my repos: ...
4
votes
2answers
2k views

Setting a password for Git cloning?

I want to put a password to my repository so that the password is asked, when cloning from my repository.
3
votes
1answer
52 views

Why does “git clone” pack the object database when being passed a local file:/// url?

The following describe the bash commands to be executed in order to reproduce the observed behavior. Although those have been run through msysgit, I suspect that the outcome should be similar on a ...
3
votes
3answers
193 views

What is the fastest way to clone a git repository over a fast network connection?

I have a situation with a relatively large git repository located on an elderly, slow host on my local network where it takes quite a while to do the initial clone. ravn@bamboo:~/git$ git clone ...
3
votes
2answers
149 views

git clone does not checkout active branch

I have a remote bare repository with two branches 'master' and 'testing', where HEAD refers to 'testing'. When cloning this repository git checks out 'master', if 'master' and 'testing' are on the ...
3
votes
2answers
465 views

Why can't I push from a shallow clone?

The git clone --depth command option says --depth <depth> Create a shallow clone with a history truncated to the specified number of revisions. A shallow repository has a number of ...
3
votes
2answers
174 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
1answer
511 views

Grit's clone method is undefined?

I've recently started working on a project that uses git for storage and ruby as a front-end. The first version of my script used ruby-git, which was ok though pretty simple. When I needed to do more ...
3
votes
3answers
137 views

Why do I have problems pushing new branches to my Git repository?

As a followup to my question about unavailable branches after svn to git migration, I have a different problem: I'm unable to push new branches to my central Git repository. $ git clone ...
3
votes
4answers
3k views

Git clone particular version of remote repository

I am very new to the world of git and version control. I cloned a remote git repository about a month ago. The remote repository has undergone many changes and has now become unstable. Now I need ...
3
votes
1answer
1k views

Cloning git repository from svn repository, results in file-less, remote-branch-less git repo

Working SVN repo I'm starting a git repo to interact with a svn repo. The svn repository is set and working fine, with a single commit of a basic README file in it. Checking it out works fine: ...
3
votes
4answers
228 views

Preserve git remotes

I have fixed network of git remotes and I would like them to be attached to repository. Unfortunately git-clone doesn't clone remotes. Is there a way around it?
2
votes
1answer
113 views

GIT clone and first GIT push issue

I have two issues. I have Ubuntu 10.10 and I have installed git server with gitolite tool. Everything worked quite good. The gl-setup command of gitolite created 2 repositories: gitolite-admin and ...
2
votes
1answer
38 views

Ignore a file in git but have it downloaded when the project is cloned

I have a file that suffers modification every time I run my project. Thus, I don't want git to track it and so I add it to my .gitignore file. However, I do wish for the file to be pulled when ...
2
votes
2answers
75 views

Installing a folder from github

I'm trying to install a Rails plugin for Geany, which is files on github. The repository has a directory /geany which I have to merge with my own ~/.config/geany. Now I could just copy the files ...
2
votes
1answer
114 views

How to selectively clone a git repository

I am new to Git. I want to clone a large remote repository lets say xyzcodebase. The structure of repo is like I have src folders for different functional areas as shown below. xyzcodebase | |__ Func ...
2
votes
2answers
90 views

How can I undo wrong permissions in my git working copy? Should I just clone again?

I just cloned a directory. While setting up my local files I accidentally set the wrong permissions to a directory and everything inside that folder (chmod -R 777 /foo). What I would like to do is ...
2
votes
3answers
87 views

What is the command equivalent to git clone -b on old Git versions?

A friend is stuck with an old version of Git (I think he said 1.5?), where he says the -b <branch> option is not supported. I can't wrap my head around it, so I really hope someone could help: ...
2
votes
2answers
899 views

Git repository on ftp server

I have ftp server and I cannot install additional software on it. Is it possible to create on it git repository and clone to local pc? I tried to create local repository and copied it to ftp. Will it ...
2
votes
1answer
404 views

Git: How to clone a 3rd party library into a subdirectory of my app's repository?

I'm trying to figure out the proper way to clone a 3rd party library (engage.iphone from Janrain) into my own app's directory structure in a way that will let me pull the latest changes and merge them ...
2
votes
1answer
349 views

Progress indicator for git clone

Is it possible to get a progress bar when doing a git clone? I'm wondering because I am currently doing a git clone that has taken a few minutes so far and would be curious to know if it is going to ...
2
votes
3answers
246 views

GIT re-merge files from dev to master

My master GIT branch seams to have some errors thus I'd like to recheck, re-merge or possibly clone my dev branch over the master branch so the master branch would be a copy of dev. How can I do ...
2
votes
1answer
2k views

git gui: how to clone and push?

I think I am stupid. I don't understand how Git works with the command lines so I am using Git Gui. I got it install and the Gui can be launched successfully, but when I come to clone the file from ...
2
votes
3answers
1k views

error: git checkout-index: unable to create file

What I am trying to do is a git clone on windows, but the parent repository exists in a unix machine. Am cloning using ssh to get a clone from UNIX to windows, and I get this weird error. error: ...
2
votes
2answers
3k views

git clone heroku ssh permission denied

I just bought a new computer and I am trying to clone my heroku project on it. Here's what I've done so far. I didn't include the trace, but everything was saved in the right place, and the functions ...
2
votes
1answer
217 views

How to avoid providing absolute path of git repo while cloning?

I am trying to host a git repository. I am now able to clone git repo on any machine within the network with: git clone gituser@192.168.0.133:/home/gituser/repositories/gitosis-admin.git But I need ...
2
votes
1answer
68 views

How do I clone over HTTP a repository that has no info/refs?

Given a repository served over HTTP whose owner forgot to chmod +x hooks/post-update, is there a workaround for cloning it? I tried running wget --mirror url, but rather than fetching the subtree ...
2
votes
2answers
467 views

How to automate git to automatically clone a repro on the server?

I have a repro in which I want to push changes. I want to sync two repositories: ./pages.git into ./pages. My git setup on my development machine pushes into pages.git. But the web-application works ...
2
votes
5answers
245 views

Cloning a repository without making it the origin remote

I'm cloning a git repository from a computer that's going to be wiped. Is it possible to clone a repository without making the original repository origin/master? Or do I need to clone it, and then ...
2
votes
2answers
207 views

how to merge cloned git repository with the original repository

we are using git on a lan of computers and we have a central repository on one machine, every developer has to clone the repository and work on his one machine. but how to merge all this repositories ...
2
votes
3answers
500 views

Making cloned repository in git the master

I have two git repositories: report.git (Master on remote location) cloned.git (Local) I lost report.git. I have the cloned.git. I want to clone other repositories from this cloned.git. This is ...
1
vote
2answers
108 views

git clone fails with 403 when running git server on windows

I´ll try to set up a git server on windows by following the description in this tutorial git-server-on-windows But trying to clone the new, empty repository I get the following exception: ...
1
vote
0answers
165 views

git clone error,Connection refused while accessing … info/refs

i want to clone resource from my git server through http,but i got the following error: git clone http://xxx/ResMonitor.git/ Cloning into ResMonitor... error: Failed connect to xxx:80; Connection ...

1 2