zayim
zayim

Reputation: 11

Is fork a git core concept?

Is forking a git repo possible through git core (command line, i.e.), or is it only a feature that github, bitbucket, etc., provide? I had similar question recently about pull-requests, but I discovered that pull-requests are not only feature provided by github, bitbucket, etc., but that is concept available in git core (http://git-scm.com/docs/git-request-pull). Is situation same with repo forking?

Upvotes: 1

Views: 48

Answers (1)

Mykola Gurov
Mykola Gurov

Reputation: 8695

Yes, fork is clone in git core.

Upvotes: 1

Related Questions