Tagged Questions

39
votes
1answer
7k 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 ...
4
votes
2answers
209 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?
2
votes
1answer
101 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
3answers
226 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
3answers
487 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 ...