Sahil Dua 52d59cc645 branch: add a --copy (-c) option to go with --move (-m)
Add the ability to --copy a branch and its reflog and configuration,
this uses the same underlying machinery as the --move (-m) option
except the reflog and configuration is copied instead of being moved.

This is useful for e.g. copying a topic branch to a new version,
e.g. work to work-2 after submitting the work topic to the list, while
preserving all the tracking info and other configuration that goes
with the branch, and unlike --move keeping the other already-submitted
branch around for reference.

Like --move, when the source branch is the currently checked out
branch the HEAD is moved to the destination branch. In the case of
--move we don't really have a choice (other than remaining on a
detached HEAD) and in order to keep the functionality consistent, we
are doing it in similar way for --copy too.

The most common usage of this feature is expected to be moving to a
new topic branch which is a copy of the current one, in that case
moving to the target branch is what the user wants, and doesn't
unexpectedly behave differently than --move would.

One outstanding caveat of this implementation is that:

    git checkout maint &&
    git checkout master &&
    git branch -c topic &&
    git checkout -

Will check out 'maint' instead of 'master'. This is because the @{-N}
feature (or its -1 shorthand "-") relies on HEAD reflogs created by
the checkout command, so in this case we'll checkout maint instead of
master, as the user might expect. What to do about that is left to a
future change.

Helped-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Sahil Dua <sahildua2305@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-06-18 21:47:59 -07:00
2017-05-10 13:32:50 +09:00
2017-06-07 09:25:20 +09:00
2017-03-24 13:31:01 -07:00
2017-03-13 15:28:54 -07:00
2017-03-13 15:28:54 -07:00
2017-06-05 09:18:12 +09:00
2017-05-25 13:08:23 +09:00
2017-05-08 15:12:57 +09:00
2017-05-08 15:12:57 +09:00
2017-05-29 12:34:43 +09:00
2017-05-29 12:34:43 +09:00
2017-05-02 10:46:41 +09:00
2017-05-29 12:34:43 +09:00
2017-04-19 21:37:13 -07:00
2017-01-25 14:42:37 -08:00
2016-08-12 09:47:37 -07:00
2017-05-29 12:34:43 +09:00
2017-06-05 09:18:12 +09:00
2017-06-05 09:18:12 +09:00
2016-09-29 15:42:18 -07:00
2017-06-02 15:06:05 +09:00
2017-06-02 15:06:05 +09:00
2017-05-29 12:34:45 +09:00
2017-03-31 08:33:56 -07:00
2017-05-29 12:34:43 +09:00
2017-03-31 08:33:56 -07:00
2017-04-26 15:39:02 +09:00
2017-06-05 09:05:38 +09:00
2017-02-15 12:54:19 -08:00
2017-03-17 10:40:25 -07:00
2017-03-22 13:41:41 -07:00
2017-03-22 13:41:41 -07:00
2017-05-30 11:16:41 +09:00
2017-05-29 12:34:43 +09:00
2017-05-08 12:18:20 +09:00
2017-01-30 14:17:00 -08:00
2016-12-07 11:31:59 -08:00
2017-06-05 09:18:12 +09:00
2017-03-31 20:57:18 -07:00
2017-02-08 15:39:55 -08:00
2017-02-08 15:39:55 -08:00
2017-01-30 14:17:00 -08:00
2017-03-28 14:05:59 -07:00
2017-05-29 12:34:43 +09:00
2017-05-29 12:34:43 +09:00
2017-05-29 12:34:43 +09:00
2017-05-29 12:34:44 +09:00
2017-06-05 09:18:13 +09:00
2017-05-29 12:34:43 +09:00
2017-04-19 21:37:13 -07:00
2017-03-31 08:33:56 -07:00
2017-06-02 15:06:05 +09:00
2017-03-31 08:33:56 -07:00
2017-03-31 08:33:56 -07:00
2017-05-22 10:20:46 +09:00
2017-05-22 10:20:46 +09:00
2017-05-29 12:34:44 +09:00
2017-05-29 12:34:43 +09:00
2017-05-29 12:34:43 +09:00
2016-08-05 09:28:17 -07:00
2017-06-02 15:06:05 +09:00
2017-05-29 12:34:43 +09:00
2016-09-26 18:16:23 -07:00
2017-05-29 12:34:44 +09:00

Git - fast, scalable, distributed revision control system

Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals.

Git is an Open Source project covered by the GNU General Public License version 2 (some parts of it are under different licenses, compatible with the GPLv2). It was originally written by Linus Torvalds with help of a group of hackers around the net.

Please read the file INSTALL for installation instructions.

Many Git online resources are accessible from https://git-scm.com/ including full documentation and Git related tools.

See Documentation/gittutorial.txt to get started, then see Documentation/giteveryday.txt for a useful minimum set of commands, and Documentation/git-.txt for documentation of each command. If git has been correctly installed, then the tutorial can also be read with man gittutorial or git help tutorial, and the documentation of each command with man git-<commandname> or git help <commandname>.

CVS users may also want to read Documentation/gitcvs-migration.txt (man gitcvs-migration or git help cvs-migration if git is installed).

The user discussion and development of Git take place on the Git mailing list -- everyone is welcome to post bug reports, feature requests, comments and patches to git@vger.kernel.org (read Documentation/SubmittingPatches for instructions on patch submission). To subscribe to the list, send an email with just "subscribe git" in the body to majordomo@vger.kernel.org. The mailing list archives are available at https://public-inbox.org/git/, http://marc.info/?l=git and other archival sites.

The maintainer frequently sends the "What's cooking" reports that list the current status of various development topics to the mailing list. The discussion following them give a good reference for project status, development direction and remaining tasks.

The name "git" was given by Linus Torvalds when he wrote the very first version. He described the tool as "the stupid content tracker" and the name as (depending on your mood):

  • random three-letter combination that is pronounceable, and not actually used by any common UNIX command. The fact that it is a mispronunciation of "get" may or may not be relevant.
  • stupid. contemptible and despicable. simple. Take your pick from the dictionary of slang.
  • "global information tracker": you're in a good mood, and it actually works for you. Angels sing, and a light suddenly fills the room.
  • "goddamn idiotic truckload of sh*t": when it breaks
Description
No description provided
Readme 235 MiB
Languages
C 50.1%
Shell 38.4%
Perl 5.1%
Tcl 3.3%
Python 0.8%
Other 2%