]> git.phdru.name Git - git-wiki.git/blob - pep-git.txt
Fix autosetuprebase argument
[git-wiki.git] / pep-git.txt
1 PEP: XXX
2 Title: Collecting information about git
3 Version: $Revision$
4 Last-Modified: $Date$
5 Author: Oleg Broytman <phd@phdru.name>
6 Status: Draft
7 Type: Informational
8 Content-Type: text/x-rst
9 Created: 01-Jun-2015
10 Post-History: 
11
12 Abstract
13 ========
14
15 This Informational PEP collects information about git. There is, of
16 course, a lot of documentation for git, so the PEP concentrates on
17 more complex issues, scenarios and topics.
18
19 The plan is to extend the PEP in the future collecting information
20 about equivalence of Mercurial and git scenarios to help migrating
21 Python development from Mercurial to git.
22
23 The author of the PEP doesn't currently plan to write a Process PEP on
24 migration from Mercurial to git.
25
26
27 Documentation
28 =============
29
30 Git is accompanied with a lot of documentation, both online and
31 offline.
32
33 Documentation for starters
34 --------------------------
35
36 Git Tutorial: `part 1
37 <https://www.kernel.org/pub/software/scm/git/docs/gittutorial.html>`_,
38 `part 2
39 <https://www.kernel.org/pub/software/scm/git/docs/gittutorial-2.html>`_.
40
41 `Git User's manual
42 <https://www.kernel.org/pub/software/scm/git/docs/user-manual.html>`_.
43 `Everyday GIT With 20 Commands Or So
44 <https://www.kernel.org/pub/software/scm/git/docs/everyday.html>`_.
45 `Git workflows
46 <https://www.kernel.org/pub/software/scm/git/docs/gitworkflows.html>`_.
47
48 Advanced documentation
49 ----------------------
50
51 `Git Magic
52 <http://www-cs-students.stanford.edu/~blynn/gitmagic/index.html>`_,
53 also with a number of translations.
54
55 `Pro Git <https://git-scm.com/book>`_. The Book about git. Buy it at
56 Amazon or download in PDF, mobi, or ePub form. Has translations to
57 many different languages. Download Russian translation from `GArik
58 <https://github.com/GArik/progit/wiki>`_.
59
60 `Git Wiki <https://git.wiki.kernel.org/index.php/Main_Page>`_.
61
62 Offline documentation
63 ---------------------
64
65 Git has builtin help: run ``git help TOPIC``. For example, run
66 ``git help git`` or ``git help help``.
67
68
69 Quick start
70 ===========
71
72 Download and installation
73 -------------------------
74
75 Unix users: download and install using your package manager.
76
77 Microsoft Windows: download `git-for-windows
78 <https://github.com/git-for-windows/git/releases>`_ or `msysGit
79 <https://github.com/msysgit/msysgit/releases>`_.
80
81 MacOS X: use git installed with `XCode
82 <https://developer.apple.com/xcode/downloads/>`_ or download from
83 `MacPorts <https://www.macports.org/ports.php?by=name&substr=git>`_ or
84 `git-osx-installer
85 <http://sourceforge.net/projects/git-osx-installer/files/>`_ or
86 install git with `Homebrew <http://brew.sh/>`_: ``brew install git``.
87
88 `git-cola <https://git-cola.github.io/index.html>`_ is a Git GUI
89 written in Python and GPL licensed. Linux, Windows, MacOS X.
90
91 `TortoiseGit <https://tortoisegit.org/>`_ is a Windows Shell Interface
92 to Git based on TortoiseSVN; open source.
93
94 Initial configuration
95 ---------------------
96
97 This simple code is often appears in documentation, but it is
98 important so let repeat it here. Git stores author and committer
99 names/emails in every commit, so configure your real name and
100 preferred email::
101
102     $ git config --global user.name "User Name"
103     $ git config --global user.email user.name@example.org
104
105
106 Examples in this PEP
107 ====================
108
109 Examples of git commands in this PEP use the following approach. It is
110 supposed that you, the user, works with a local repository named
111 ``python`` that has an upstream remote repo named ``origin``. Your
112 local repo has two branches ``v1`` and ``v2``. For most examples the
113 currently checked out branch is ``v2``. That is, it's assumed you have
114 done something like that::
115
116     $ git clone -b v2 http://git.python.org/python.git
117     $ cd python
118     $ git branch v1 origin/v1
119
120 The first command clones remote repository into local directory
121 `python``, creates a new local branch v2, sets remotes/origin/v2 as
122 its upstream remote branch and checks it out into the working
123 directory.
124
125 The last command creates a new local branch v1 and sets
126 remotes/origin/v1 as its upstream remote branch.
127
128 The same result can be achieved with commands::
129
130     $ git clone -b v1 http://git.python.org/python.git
131     $ cd python
132     $ git checkout --track origin/v2
133
134 The last command creates a new local branch v2, sets
135 remotes/origin/v2 as its upstream remote branch and checks it out into
136 the working directory.
137
138
139 Branches and branches
140 =====================
141
142 Git terminology can be a bit misleading. Take, for example, the term
143 "branch". In git it has two meanings. A branch is a directed line of
144 commits (possibly with merges). And a branch is a label or a pointer
145 assigned to a line of commits. It is important to differentiate when
146 you talk about commits and when about their labels. Lines of commits
147 are by itself unnamed and are usually only lengthening and merging.
148 Labels, on the other hand, can be created, moved, renamed and deleted
149 freely.
150
151
152 Remote repositories and remote branches
153 =======================================
154
155 Another example of slightly misleading terminology. Remote
156 repositories are really remote, you access them via network (well, a
157 remote repository can be on your local disk, but it's still remote
158 because it's not the current repo).
159
160 Remote branches, on the other hand, are branches (pointers to commits)
161 in your local repository. They are there for you to remember what
162 branches and commits have been pulled from and pushed to what remote
163 repos (you can pull from and push to many remotes). Remote branches
164 live under ``remotes/REMOTE`` namespaces, e.g. ``remotes/origin/v2``.
165
166 To see the status of remote branches run::
167
168     $ git branch -rv
169
170 To see local and remote branches (and tags) pointing to commits::
171
172     $ git log --decorate
173
174 You never do your own development on remote branches. You create a
175 local branch that has a remote branch as upstream and do development
176 on that local branch. On push git pushes commits to the remote repo
177 and updates remote branches, on pull git fetches commits from the
178 remote repo, updates remote branches and fast-forwards, merges or
179 rebases local branches.
180
181 When you do an initial clone like this::
182
183     $ git clone -b v1 http://git.python.org/python.git
184
185 git clones remote repository ``http://git.python.org/python.git`` to
186 directory ``python``, creates remote branches, creates a local branch
187 ``v1``, configure it to track upstream remotes/origin/v1 branch and
188 checks out ``v1`` into the working directory.
189
190 Updating local and remote branches
191 ----------------------------------
192
193 There is a major difference between
194
195 ::
196
197     $ git fetch REMOTE BRANCH
198
199 and
200
201 ::
202
203     $ git fetch REMOTE BRANCH:BRANCH
204
205 The first command fetches commits from the named BRANCH in the REMOTE
206 repository that are not in your repository and leaves the id (the
207 hash) of the head commit in file .git/FETCH_HEAD. But it doesn't
208 update any branch (doesn't move any pointer).
209
210 The second command fetches commits from the named BRANCH in the REMOTE
211 repository that are not in your repository and updates both the local
212 branch BRANCH and its upstream remote branch. But it refuses to update
213 branches in case of non-fast-forward. And it refuses to update the
214 current branch.
215
216 The first command is used internally by ``git pull``.
217
218 ::
219
220     $ git pull REMOTE BRANCH
221
222 is equivalent to
223
224 ::
225
226     $ git fetch REMOTE BRANCH
227     $ git merge FETCH_HEAD  # FETCH_HEAD is a literal here
228
229 Certainly, BRANCH in that case should be your current branch. If you
230 want to merge a different branch into your current branch first update
231 that non-current branch and then merge::
232
233     $ git fetch origin v1:v1  # Update v1
234     $ git pull --rebase origin v2  # Update the current branch v2 using
235                                    # rebase instead of merge
236     $ git merge v1
237
238 If you have not yet pushed commits on ``v1``, though, the scenario has
239 to become a bit more complex. Git refuses to update
240 non-fast-forwardable branch, and you don't want to do force-pull
241 because that would remove your non-pushed commits and you would need
242 to recover. So you want to rebase ``v1`` but you cannot rebase
243 non-current branch. Hence, checkout ``v1`` and rebase it before
244 merging::
245
246     $ git checkout v1
247     $ git pull --rebase origin v1
248     $ git checkout v2
249     $ git pull --rebase origin v2
250     $ git merge v1
251
252 It is possible to configure git to make it fetch/pull a few branches
253 or all branches at once, so you can simply run
254
255 ::
256
257     $ git pull origin
258
259 or even
260
261 ::
262
263     $ git pull
264
265 Push
266 ''''
267
268 Pushing is a bit simpler. There is only one command ``push``. When you
269 run
270
271 ::
272
273     $ git push origin v1 v2
274
275 git guesses (knowing upstream remote branches) that you really want
276
277 ::
278
279     $ git push origin v1:v1 v2:v2
280
281 Git pushes commits to the remote repo and updates remote branches. Git
282 refuses to push commits that aren't fast-forwardable. You can
283 force-push anyway, but please remember - you can force-push to your
284 own repositories but don't force-push to public or shared repos. If
285 you find git refuses to push commits that aren't fast-forwardable,
286 better fetch and merge commits from the remote repo (or rebase your
287 commits on top of the fetched commits), then push. Only force-push if
288 you know what you do and why you do it. See the section `Commit
289 editing and caveats`_ below.
290
291 It is possible to configure git to make it push a few branches or all
292 branches at once, so you can simply run
293
294 ::
295
296     $ git push origin
297
298 or even
299
300 ::
301
302     $ git push
303
304 Git refuses to push a branch if it's the current branch in the remote
305 non-bare repository: git refuses to update remote working directory.
306 You really should push only to bare repositories. For non-bare
307 repositories git prefers pull-based workflow.
308
309 When you want to deploy code on a remote host and can only use push
310 (because your workstation is behind a firewall and you cannot pull
311 from it) you do that in two steps using two repositories: you push
312 from the workstation to a bare repo on the remote host, ssh to the
313 remote host and pull from the bare repo to a non-bare deployment repo.
314
315 Tags
316 ''''
317
318 Git automatically fetches tags that point to commits being fetched
319 during fetch/pull. To fetch all tags (and commits they point to) run
320 ``git fetch --tags origin``. To fetch some specific tags fetch them
321 explicitly::
322
323     $ git fetch origin tag TAG1 tag TAG2...
324
325 For example::
326
327     $ git fetch origin tag 1.4.2 tag 2.1.7
328
329 Git doesn't automatically pushes tags. That allows you to have private
330 tags (lightweight tags are also private for a repo, they cannot be
331 pushed). To push tags list them explicitly::
332
333     $ git push origin tag 1.4.2
334     $ git push origin v1 v2 tag 2.1.7
335
336 Don't move tags with ``git tag -f`` after they have been published.
337
338
339 Commit editing and caveats
340 ==========================
341
342 A warning not to edit published (pushed) commits also appears in
343 documentation but it's repeated here anyway as it's very important.
344
345 It is possible to recover from forced push but it's PITA for the
346 entire team. Please avoid it.
347
348 To see what commits have not been published yet compare the head of the
349 branch with its upstream remote branch::
350
351     $ git log origin/v2..
352     $ git log origin/v1..v1
353
354 For every branch that has an upstream remote branch git maintains an
355 alias @{upstream} (short version @{u}), so the commands above can be
356 given as::
357
358     $ git log @{u}..
359     $ git log v1@{u}..v1
360
361 To see the status of all branches::
362
363     $ git branch -avv
364
365 To compare the status of local branches with a remote repo::
366
367     $ git remote show origin
368
369 Read `how to recover from upstream rebase
370 <https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase>`_.
371 It is in ``git help rebase``.
372
373 On the other hand don't be too afraid about commit editing. You can
374 safely edit, remove, reorder, combine and split commits that hasn't
375 been pushed yet. You can even push commits to your own (backup) repo,
376 edit them later and force-push edited commits to replace what has
377 already been pushed. Not a problem until commits are in a public
378 or shared repository.
379
380
381 Undo
382 ====
383
384 Whatever you do, don't panic. Almost anything in git can be undone.
385 ``git checkout``, for example, can be used to restore the content of
386 file(s) to that one of a commit. Like this::
387
388     git checkout HEAD~ README
389
390 The commands restores the contente of README file to the last but one
391 commit in the current branch. By default a commit ID is simple HEAD;
392 i.e. ``git checkout README`` restores README to the latest commit.
393
394 (Do not use ``git checkout`` to view a content of a file in a commit,
395 use ``git cat-file -p``; e.g. ``git cat-file -p HEAD~:path/to/README``).
396
397 ``git reset`` moves the head of the current branch. The head can be
398 moved to point to any commit but it's often used to remove a commit or
399 a few (preferably, non-pushed ones) from the top of the branch - that
400 is, to move the branch backward in order to undo a few non-pushed
401 commits.
402
403 ``git reset`` has three modes of operation - soft, hard and mixed.
404 Default is mixed. ProGit `explains
405 <https://git-scm.com/book/en/Git-Tools-Reset-Demystified>`_ the
406 difference very clearly. Bare repositories don't have indices or
407 working trees so in a bare repo only soft reset is possible.
408
409 Mixed mode reset with a path or paths can be used to unstage changes -
410 that is, to remove changes added with ``git add`` for committing. See
411 `The Book <https://git-scm.com/book/en/v2/Git-Basics-Undoing-Things>`_
412 for details about unstaging and other undo tricks.
413
414 TODO: describe undo strategies: git reflog, git revert.
415 "Commit early, commit often".
416
417 How to undo a merge
418 https://www.kernel.org/pub/software/scm/git/docs/howto/revert-a-faulty-merge.html
419
420
421 Merge or rebase?
422 ================
423
424 Internet is full of heated discussions on the topic: "merge or
425 rebase?" Most of them are meaningless. When a DVCS is being used in a
426 big team with a big and complex project with many branches there is
427 simply no way to avoid merges. So the question's diminished to
428 "whether to use rebase, and if yes - when to use rebase?" Considering
429 that it is very much recommended not to rebase published commits the
430 question's diminished even further: "whether to use rebase on
431 non-pushed commits?"
432
433 That small question is for the team to decide. The author of the PEP
434 recommends to use rebase when pulling, i.e. always do ``git pull
435 --rebase`` or even configure automatic setup of rebase for every new
436 branch::
437
438     $ git config branch.autosetuprebase always
439
440 and configure rebase for existing branches::
441
442     $ git config branch.NAME.rebase true
443
444 For example::
445
446     $ git config branch.v1.rebase true
447     $ git config branch.v2.rebase true
448
449 After that ``git pull origin v2`` becomes equivalent to ``git pull
450 --rebase origin v2``.
451
452 In case when merge is preferred it is recommended to create new
453 commits in a separate feature or topic branch while using rebase to
454 update the mainline branch. When the topic branch is ready merge it
455 into mainline. To avoid a tedious task of resolving large number of
456 conflicts at once you can merge the topic branch to the mainline from
457 time to time and switch back to the topic branch to continue working
458 on it. The entire workflow would be something like::
459
460     $ git checkout -b issue-42  # create a new issue branch and switch to it
461         ...edit/test/commit...
462     $ git checkout v2
463     $ git pull --rebase origin v2  # update v2 from the upstream
464     $ git merge issue-42
465     $ git branch -d issue-42  # delete the topic branch
466     $ git push origin v2
467
468 When the topic branch is deleted only the label is removed, commits
469 are stayed in the database, they are now merged into v2::
470
471     o--o--o--o--o--M--< v2 - the mainline branch
472         \         /
473          --*--*--*         - the topic branch, now unnamed
474
475 The topic branch is deleted to avoid cluttering branch namespace with
476 small topic branches. Information on what issue was fixed or what
477 feature was implemented should be in the commit messages.
478
479
480 Null-merges
481 ===========
482
483 Git has a builtin merge strategy for what Python core developers call
484 "null-merge"::
485
486     $ git merge -s ours v1  # null-merge v1 into v2
487
488
489 ReReRe
490 ======
491
492 https://git-scm.com/book/en/Git-Tools-Rerere
493
494
495 Advanced topics
496 ===============
497
498 Staging area
499 ------------
500
501 Staging area aka index is a distinguishing feature of git. See
502 `WhatIsTheIndex
503 <https://git.wiki.kernel.org/index.php/WhatIsTheIndex>`_ and
504 `IndexCommandQuickref
505 <https://git.wiki.kernel.org/index.php/IndexCommandQuickref>`_ in Git
506 Wiki.
507
508
509 Advanced configuration
510 ======================
511
512 Line endings
513 ------------
514
515 Git has builtin mechanisms to handle line endings.
516
517 TODO: describe crlf configuration and .gitattributes.
518
519
520 Database maintenance
521 ====================
522
523 TODO: dangling objects, git gc, git repack.
524 https://gcc.gnu.org/ml/gcc/2007-12/msg00165.html
525
526
527 Tips and tricks
528 ===============
529
530 TODO: sticky options; example: git grep -O.
531
532 TODO: tricky options; example: git log -p3.
533
534 TODO: bash/zsh completion, bash/zsh prompt.
535 https://git.kernel.org/cgit/git/git.git/tree/contrib/completion
536
537
538 git on server
539 =============
540
541 TODO: anonymous access; git over ssh; gitolite; gitweb; cgit; gitlab.
542
543 http://gitolite.com/gitolite/index.html
544
545 https://git.kernel.org/cgit/git/git.git/tree/gitweb
546
547 http://git.zx2c4.com/cgit/
548
549 From Mercurial to git
550 =====================
551
552 Mercurial for Git users https://mercurial.selenic.com/wiki/GitConcepts
553
554 https://github.com/felipec/git-remote-hg
555
556 https://hg-git.github.io/
557
558
559 References
560 ==========
561
562 .. [] 
563
564
565 Copyright
566 =========
567
568 This document has been placed in the public domain.
569
570
571 \f
572 ..
573    Local Variables:
574    mode: indented-text
575    indent-tabs-mode: nil
576    sentence-end-double-space: t
577    fill-column: 70
578    coding: utf-8
579    End:
580    vim: set fenc=us-ascii tw=70 :