]> git.phdru.name Git - git-wiki.git/blob - pep-git.txt
Explain creation of a remote named ``origin``
[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 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 <https://git-scm.com/download/linux>`_.
77
78 Microsoft Windows: download `git-for-windows
79 <https://github.com/git-for-windows/git/releases>`_ or `msysGit
80 <https://github.com/msysgit/msysgit/releases>`_.
81
82 MacOS X: use git installed with `XCode
83 <https://developer.apple.com/xcode/downloads/>`_ or download from
84 `MacPorts <https://www.macports.org/ports.php?by=name&substr=git>`_ or
85 `git-osx-installer
86 <http://sourceforge.net/projects/git-osx-installer/files/>`_ or
87 install git with `Homebrew <http://brew.sh/>`_: ``brew install git``.
88
89 `git-cola <https://git-cola.github.io/index.html>`_ is a Git GUI
90 written in Python and GPL licensed. Linux, Windows, MacOS X.
91
92 `TortoiseGit <https://tortoisegit.org/>`_ is a Windows Shell Interface
93 to Git based on TortoiseSVN; open source.
94
95 Initial configuration
96 ---------------------
97
98 This simple code is often appears in documentation, but it is
99 important so let repeat it here. Git stores author and committer
100 names/emails in every commit, so configure your real name and
101 preferred email::
102
103     $ git config --global user.name "User Name"
104     $ git config --global user.email user.name@example.org
105
106
107 Examples in this PEP
108 ====================
109
110 Examples of git commands in this PEP use the following approach. It is
111 supposed that you, the user, works with a local repository named
112 ``python`` that has an upstream remote repo named ``origin``. Your
113 local repo has two branches ``v1`` and ``master``. For most examples
114 the currently checked out branch is ``master``. That is, it's assumed
115 you have done something like that::
116
117     $ git clone http://git.python.org/python.git
118     $ cd python
119     $ git branch v1 origin/v1
120
121 The first command clones remote repository into local directory
122 `python``, creates a new local branch master, sets
123 remotes/origin/master as its upstream remote-tracking branch and
124 checks it out into the working directory.
125
126 The last command creates a new local branch v1 and sets
127 remotes/origin/v1 as its upstream remote-tracking branch.
128
129 The same result can be achieved with commands::
130
131     $ git clone -b v1 http://git.python.org/python.git
132     $ cd python
133     $ git checkout --track origin/master
134
135 The last command creates a new local branch master, sets
136 remotes/origin/master as its upstream remote-tracking branch and
137 checks it out into the working directory.
138
139
140 Branches and branches
141 =====================
142
143 Git terminology can be a bit misleading. Take, for example, the term
144 "branch". In git it has two meanings. A branch is a directed line of
145 commits (possibly with merges). And a branch is a label or a pointer
146 assigned to a line of commits. It is important to distinguish when you
147 talk about commits and when about their labels. Lines of commits are
148 by itself unnamed and are usually only lengthening and merging.
149 Labels, on the other hand, can be created, moved, renamed and deleted
150 freely.
151
152
153 Remote repositories and remote branches
154 =======================================
155
156 Remote-tracking branches are branches (pointers to commits) in your
157 local repository. They are there for you to remember what branches and
158 commits have been pulled from and pushed to what remote repos (you can
159 pull from and push to many remotes). Remote-tracking branches live
160 under ``remotes/$REMOTE`` namespaces, e.g. ``remotes/origin/master``.
161
162 To see the status of remote-tracking branches run::
163
164     $ git branch -rv
165
166 To see local and remote-tracking branches (and tags) pointing to
167 commits::
168
169     $ git log --decorate
170
171 You never do your own development on remote-tracking branches. You
172 create a local branch that has a remote branch as upstream and do
173 development on that local branch. On push git pushes commits to the
174 remote repo and updates remote-tracking branches, on pull git fetches
175 commits from the remote repo, updates remote-tracking branches and
176 fast-forwards, merges or rebases local branches.
177
178 When you do an initial clone like this::
179
180     $ git clone -b v1 http://git.python.org/python.git
181
182 git clones remote repository ``http://git.python.org/python.git`` to
183 directory ``python``, creates a remote named ``origin``, creates
184 remote-tracking branches, creates a local branch ``v1``, configure it
185 to track upstream remotes/origin/v1 branch and checks out ``v1`` into
186 the working directory.
187
188 Updating local and remote-tracking branches
189 -------------------------------------------
190
191 There is a major difference between
192
193 ::
194
195     $ git fetch $REMOTE $BRANCH
196
197 and
198
199 ::
200
201     $ git fetch $REMOTE $BRANCH:$BRANCH
202
203 The first command fetches commits from the named $BRANCH in the
204 $REMOTE repository that are not in your repository, updates
205 remote-tracking branch and leaves the id (the hash) of the head commit
206 in file .git/FETCH_HEAD.
207
208 The second command fetches commits from the named $BRANCH in the
209 $REMOTE repository that are not in your repository and updates both
210 the local branch $BRANCH and its upstream remote-tracking branch. But
211 it refuses to update branches in case of non-fast-forward. And it
212 refuses to update the current branch.
213
214 The first command is used internally by ``git pull``.
215
216 ::
217
218     $ git pull $REMOTE $BRANCH
219
220 is equivalent to
221
222 ::
223
224     $ git fetch $REMOTE $BRANCH
225     $ git merge FETCH_HEAD
226
227 Certainly, $BRANCH in that case should be your current branch. If you
228 want to merge a different branch into your current branch first update
229 that non-current branch and then merge::
230
231     $ git fetch origin v1:v1  # Update v1
232     $ git pull --rebase origin master  # Update the current branch master
233                                        # using rebase instead of merge
234     $ git merge v1
235
236 If you have not yet pushed commits on ``v1``, though, the scenario has
237 to become a bit more complex. Git refuses to update
238 non-fast-forwardable branch, and you don't want to do force-pull
239 because that would remove your non-pushed commits and you would need
240 to recover. So you want to rebase ``v1`` but you cannot rebase
241 non-current branch. Hence, checkout ``v1`` and rebase it before
242 merging::
243
244     $ git checkout v1
245     $ git pull --rebase origin v1
246     $ git checkout master
247     $ git pull --rebase origin master
248     $ git merge v1
249
250 It is possible to configure git to make it fetch/pull a few branches
251 or all branches at once, so you can simply run
252
253 ::
254
255     $ git pull origin
256
257 or even
258
259 ::
260
261     $ git pull
262
263 Default remote repository for fetching/pulling is origin. Default set
264 of references to fetch is calculated using matching algorithm: git
265 fetches all branches having the same name on both ends.
266
267 Push
268 ''''
269
270 Pushing is a bit simpler. There is only one command ``push``. When you
271 run
272
273 ::
274
275     $ git push origin v1 master
276
277 git pushes local v1 to remote v1 and local master to remote master.
278 The same as::
279
280     $ git push origin v1:v1 master:master
281
282 Git pushes commits to the remote repo and updates remote-tracking
283 branches. Git refuses to push commits that aren't fast-forwardable.
284 You can force-push anyway, but please remember - you can force-push to
285 your own repositories but don't force-push to public or shared repos.
286 If you find git refuses to push commits that aren't fast-forwardable,
287 better fetch and merge commits from the remote repo (or rebase your
288 commits on top of the fetched commits), then push. Only force-push if
289 you know what you do and why you do it. See the section `Commit
290 editing and caveats`_ below.
291
292 It is possible to configure git to make it push a few branches or all
293 branches at once, so you can simply run
294
295 ::
296
297     $ git push origin
298
299 or even
300
301 ::
302
303     $ git push
304
305 Default remote repository for pushing is origin. Default set
306 of references to push in git before 2.0 is calculated using matching
307 algorithm: git pushes all branches having the same name on both ends.
308 Default set of references to push in git 2.0+ is calculated using
309 simple algorithm: git pushes the current branch back to its
310 @{upstream}.
311
312 To configure git before 2.0 to the new behaviour run::
313
314 $ git config push.default simple
315
316 To configure git 2.0+ to the old behaviour run::
317
318 $ git config push.default matching
319
320 Git refuses to push a branch if it's the current branch in the remote
321 non-bare repository: git refuses to update remote working directory.
322 You really should push only to bare repositories. For non-bare
323 repositories git prefers pull-based workflow.
324
325 When you want to deploy code on a remote host and can only use push
326 (because your workstation is behind a firewall and you cannot pull
327 from it) you do that in two steps using two repositories: you push
328 from the workstation to a bare repo on the remote host, ssh to the
329 remote host and pull from the bare repo to a non-bare deployment repo.
330
331 That changed in git 2.3, but see `the blog post
332 <https://github.com/blog/1957-git-2-3-has-been-released#push-to-deploy>`_
333 for caveats; in 2.4 the push-to-deploy feature was `further improved
334 <https://github.com/blog/1994-git-2-4-atomic-pushes-push-to-deploy-and-more#push-to-deploy-improvements>`_.
335
336 Tags
337 ''''
338
339 Git automatically fetches tags that point to commits being fetched
340 during fetch/pull. To fetch all tags (and commits they point to) run
341 ``git fetch --tags origin``. To fetch some specific tags fetch them
342 explicitly::
343
344     $ git fetch origin tag $TAG1 tag $TAG2...
345
346 For example::
347
348     $ git fetch origin tag 1.4.2
349     $ git fetch origin v1:v1 tag 2.1.7
350
351 Git doesn't automatically pushes tags. That allows you to have private
352 tags. To push tags list them explicitly::
353
354     $ git push origin tag 1.4.2
355     $ git push origin v1 master tag 2.1.7
356
357 Don't move tags with ``git tag -f`` or remove tags with ``git tag -d``
358 after they have been published.
359
360 Private information
361 '''''''''''''''''''
362
363 When cloning/fetching/pulling/pushing git copies only database objects
364 (commits, trees, files and tags) and symbolic references (branches and
365 lightweight tags). Everything else is private to the repository and
366 never cloned, updated or pushed. It's your config, your hooks, your
367 private exclude file.
368
369 If you want to distribute hooks, copy them to the working tree, add,
370 commit, push and instruct the team to update ind install the hook
371 manually.
372
373
374 Commit editing and caveats
375 ==========================
376
377 A warning not to edit published (pushed) commits also appears in
378 documentation but it's repeated here anyway as it's very important.
379
380 It is possible to recover from forced push but it's PITA for the
381 entire team. Please avoid it.
382
383 To see what commits have not been published yet compare the head of the
384 branch with its upstream remote-tracking branch::
385
386     $ git log origin/master..
387     $ git log origin/v1..v1
388
389 For every branch that has an upstream remote-tracking branch git
390 maintains an alias @{upstream} (short version @{u}), so the commands
391 above can be given as::
392
393     $ git log @{u}..
394     $ git log v1@{u}..v1
395
396 To see the status of all branches::
397
398     $ git branch -avv
399
400 To compare the status of local branches with a remote repo::
401
402     $ git remote show origin
403
404 Read `how to recover from upstream rebase
405 <https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase>`_.
406 It is in ``git help rebase``.
407
408 On the other hand don't be too afraid about commit editing. You can
409 safely edit, remove, reorder, combine and split commits that haven't
410 been pushed yet. You can even push commits to your own (backup) repo,
411 edit them later and force-push edited commits to replace what have
412 already been pushed. Not a problem until commits are in a public
413 or shared repository.
414
415
416 Undo
417 ====
418
419 Whatever you do, don't panic. Almost anything in git can be undone.
420
421 git checkout: restore file's content
422 ------------------------------------
423
424 ``git checkout``, for example, can be used to restore the content of
425 file(s) to that one of a commit. Like this::
426
427     git checkout HEAD~ README
428
429 The commands restores the contents of README file to the last but one
430 commit in the current branch. By default the commit ID is simply HEAD;
431 i.e. ``git checkout README`` restores README to the latest commit.
432
433 (Do not use ``git checkout`` to view a content of a file in a commit,
434 use ``git cat-file -p``; e.g. ``git cat-file -p HEAD~:path/to/README``).
435
436 git reset: remove (non-pushed) commits
437 --------------------------------------
438
439 ``git reset`` moves the head of the current branch. The head can be
440 moved to point to any commit but it's often used to remove a commit or
441 a few (preferably, non-pushed ones) from the top of the branch - that
442 is, to move the branch backward in order to undo a few (non-pushed)
443 commits.
444
445 ``git reset`` has three modes of operation - soft, hard and mixed.
446 Default is mixed. ProGit `explains
447 <https://git-scm.com/book/en/Git-Tools-Reset-Demystified>`_ the
448 difference very clearly. Bare repositories don't have indices or
449 working trees so in a bare repo only soft reset is possible.
450
451 Unstaging
452 '''''''''
453
454 Mixed mode reset with a path or paths can be used to unstage changes -
455 that is, to remove from index changes added with ``git add`` for
456 committing. See `The Book
457 <https://git-scm.com/book/en/Git-Basics-Undoing-Things>`_ for details
458 about unstaging and other undo tricks.
459
460 git reflog: reference log
461 -------------------------
462
463 Removing commits with ``git reset`` or moving the head of a branch
464 sounds dangerous and it is. But there is a way to undo: another
465 reset back to the original commit. Git doesn't remove commits
466 immediately; unreferenced commits (in git terminology they are called
467 "dangling commits") stay in the database for some time (default is two
468 weeks) so you can reset back to it or create a new branch pointing to
469 the original commit.
470
471 For every move of a branch's head - with ``git commit``, ``git
472 checkout``, ``git fetch``, ``git pull``, ``git rebase``, ``git reset``
473 and so on - git stores a reference log (reflog for short). For every
474 move git stores where the head was. Command ``git reflog`` can be used
475 to view (and manipulate) the log.
476
477 In addition to the moves of the head of every branch git stores the
478 moves of the HEAD - a symbolic reference that (usually) names the
479 current branch. HEAD is changed with ``git checkout $BRANCH``.
480
481 By default ``git reflog`` shows the moves of the HEAD, i.e. the
482 command is equivalent to ``git reflog HEAD``. To show the moves of the
483 head of a branch use the command ``git reflog $BRANCH``.
484
485 So to undo a ``git reset`` lookup the original commit in ``git
486 reflog``, verify it with ``git show`` or ``git log`` and run ``git
487 reset $COMMIT_ID``. Git stores the move of the branch's head in
488 reflog, so you can undo that undo later again.
489
490 In a more complex situation you'd want to move some commits along with
491 resetting the head of the branch. Cherry-pick them to the new branch.
492 For example, if you want to reset the branch ``master`` back to the
493 original commit but preserve two commits created in the current branch
494 do something like::
495
496     $ git branch save-master # create a new branch saving master
497     $ git reflog # find the original place of master
498     $ git reset $COMMIT_ID
499     $ git cherry-pick save-master~ save-master
500     $ git branch -D save-master # remove temporary branch
501
502 git revert: revert a commit
503 ---------------------------
504
505 ``git revert`` reverts a commit or commits, that is, it creates a new
506 commit or commits that revert(s) the effects of the given commits.
507 It's the only way to undo published commits (``git commit --amend``,
508 ``git rebase`` and ``git reset`` change the branch in
509 non-fast-forwardable ways so they should only be used for non-pushed
510 commits.)
511
512 There is a problem with reverting a merge commit. ``git revert`` can
513 undo the code created by the merge commit but it cannot undo the fact
514 of merge. See the discussion `How to revert a faulty merge
515 <https://www.kernel.org/pub/software/scm/git/docs/howto/revert-a-faulty-merge.html>`_.
516
517 One thing that cannot be undone
518 -------------------------------
519
520 Whatever you undo, there is one thing that cannot be undone -
521 overwritten uncommitted changes. Uncommitted changes don't belong to
522 git so git cannot help preserving them.
523
524 Most of the time git warns you when you're going to execute a command
525 that overwrites uncommitted changes. Git warns you when you try to
526 switch branches with ``git checkout``. It warns you when you're going
527 to rebase with non-clean working tree. It refuses to pull new commits
528 over non-committed files.
529
530 But there are commands that do exactly that - overwrite files in the
531 working tree. Commands like ``git checkout $PATHs`` or ``git reset
532 --hard`` silently overwrite files including your uncommitted changes.
533
534 With that in mind you can understand the stance "commit early, commit
535 often". Commit as often as possible. Commit on every save in your
536 editor or IDE. You can edit your commits before pushing - change,
537 reorder, combine, remove. But save your changes in git database,
538 either commit changes or at least stash them with ``git stash``.
539
540
541 Merge or rebase?
542 ================
543
544 Internet is full of heated discussions on the topic: "merge or
545 rebase?" Most of them are meaningless. When a DVCS is being used in a
546 big team with a big and complex project with many branches there is
547 simply no way to avoid merges. So the question's diminished to
548 "whether to use rebase, and if yes - when to use rebase?" Considering
549 that it is very much recommended not to rebase published commits the
550 question's diminished even further: "whether to use rebase on
551 non-pushed commits?"
552
553 That small question is for the team to decide. The author of the PEP
554 recommends to use rebase when pulling, i.e. always do ``git pull
555 --rebase`` or even configure automatic setup of rebase for every new
556 branch::
557
558     $ git config branch.autosetuprebase always
559
560 and configure rebase for existing branches::
561
562     $ git config branch.$NAME.rebase true
563
564 For example::
565
566     $ git config branch.v1.rebase true
567     $ git config branch.master.rebase true
568
569 After that ``git pull origin master`` becomes equivalent to ``git pull
570 --rebase origin master``.
571
572 In case when merge is preferred it is recommended to create new
573 commits in a separate feature or topic branch while using rebase to
574 update the mainline branch. When the topic branch is ready merge it
575 into mainline. To avoid a tedious task of resolving large number of
576 conflicts at once you can merge the topic branch to the mainline from
577 time to time and switch back to the topic branch to continue working
578 on it. The entire workflow would be something like::
579
580     $ git checkout -b issue-42  # create a new issue branch and switch to it
581         ...edit/test/commit...
582     $ git checkout master
583     $ git pull --rebase origin master  # update master from the upstream
584     $ git merge issue-42
585     $ git branch -d issue-42  # delete the topic branch
586     $ git push origin master
587
588 When the topic branch is deleted only the label is removed, commits
589 are stayed in the database, they are now merged into master::
590
591     o--o--o--o--o--M--< master - the mainline branch
592         \         /
593          --*--*--*             - the topic branch, now unnamed
594
595 The topic branch is deleted to avoid cluttering branch namespace with
596 small topic branches. Information on what issue was fixed or what
597 feature was implemented should be in the commit messages.
598
599
600 Null-merges
601 ===========
602
603 Git has a builtin merge strategy for what Python core developers call
604 "null-merge"::
605
606     $ git merge -s ours v1  # null-merge v1 into master
607
608
609 Advanced configuration
610 ======================
611
612 Line endings
613 ------------
614
615 Git has builtin mechanisms to handle line endings between platforms
616 with different EOL styles. To allow git to do CRLF conversion assign
617 ``text`` attribute to files using `.gitattributes
618 <https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html>`_.
619 For files that have to have specific line ending assign ``eol``
620 attribute. For binary files the attribute is, naturally, ``binary``.
621
622 For example::
623
624     $ cat .gitattributes
625     *.py text
626     *.txt text
627     *.png binary
628     /readme.txt eol=CRLF
629
630 To check what attributes git uses for files use ``git check-attr``
631 command. For example::
632
633 $ git check-attr -a -- \*.py
634
635
636 Advanced topics
637 ===============
638
639 Staging area
640 ------------
641
642 Staging area aka index aka cache is a distinguishing feature of git.
643 Staging area is where git collects patches before committing them.
644 Separation between collecting patches and commit phases provides a
645 very useful feature of git: you can review collected patches before
646 commit and even edit them - remove some hunks, add new hunks and
647 review again.
648
649 To add files to the index use ``git add``. Collecting patches before
650 committing means you need to do that for every change, not only to add
651 new (untracked) files. To simplify committing in case you just want to
652 commit everything without reviewing run ``git commit --all`` (or just
653 ``-a``) - the command adds every changed tracked file to the index and
654 then commit. To commit a file or files regardless of patches collected
655 in the index run ``git commit [--only|-o] -- $FILE...``.
656
657 To add hunks of patches to the index use ``git add --patch`` (or just
658 ``-p``). To remove collected files from the index use ``git reset HEAD
659 -- $FILE...`` To add/inspect/remove collected hunks use ``git add
660 --interactive`` (``-i``).
661
662 To see the diff between the index and the last commit (i.e., collected
663 patches) use ``git diff --cached``. To see the diff between the
664 working tree and the index (i.e., uncollected patches) use just ``git
665 diff``. To see the diff between the working tree and the last commit
666 (i.e., both collected and uncollected patches) run ``git diff HEAD``.
667
668 See `WhatIsTheIndex
669 <https://git.wiki.kernel.org/index.php/WhatIsTheIndex>`_ and
670 `IndexCommandQuickref
671 <https://git.wiki.kernel.org/index.php/IndexCommandQuickref>`_ in Git
672 Wiki.
673
674
675 ReReRe
676 ======
677
678 Rerere is a mechanism that helps to resolve repeated merge conflicts.
679 The most frequent source of recurring merge conflicts are topic
680 branches that are merged into mainline and then the merge commits are
681 removed; that's often performed to test the topic branches and train
682 rerere; merge commits are removed to have clean linear history and
683 finish the topic branch with only one last merge commit.
684
685 Rerere works by remembering the states of tree before and after a
686 successful commit. That way rerere can automatically resolve conflicts
687 if they appear in the same files.
688
689 Rerere can be used manually with ``git rerere`` command but most often
690 it's used automatically. Enable rerere with these commands in a
691 working tree::
692
693     $ git config rerere.enabled true
694     $ git config rerere.autoupdate true
695
696 You don't need to turn rerere on globally - you don't want rerere in
697 bare repositories or repositories without branches; you only need
698 rerere in repos where you often perform merges and resolve merge
699 conflicts.
700
701 See `Rerere <https://git-scm.com/book/en/Git-Tools-Rerere>`_ in The
702 Book.
703
704
705 Database maintenance
706 ====================
707
708 Git object database and other files/directories under ``.git`` require
709 periodic maintenance and cleanup. For example, commit editing left
710 unreferenced objects (dangling objects, in git terminology) and these
711 objects should be pruned to avoid collecting cruft in the DB. The
712 command ``git gc`` is used for maintenance. Git automatically runs
713 ``git gc --auto`` as a part of some commands to do quick maintenance.
714 Users are recommended to run ``git gc --aggressive`` from time to
715 time; ``git help gc`` recommends to run it  every few hundred
716 changesets; for more intensive projects it should be something like
717 once a week and less frequently (biweekly or monthly) for lesser
718 active projects.
719
720 ``git gc --aggressive`` not only removes dangling objects, it also
721 repacks object database into indexed and better optimized pack(s); it
722 also packs symbolic references (branches and tags). Another way to do
723 it is to run ``git repack``.
724
725 There is a well-known `message
726 <https://gcc.gnu.org/ml/gcc/2007-12/msg00165.html>`_ from Linus
727 Torvalds regarding "stupidity" of ``git gc --aggressive``. The message
728 can safely be ignored now. It is old and outdated, ``git gc
729 --aggressive`` became much better since that time.
730
731 For those who still prefer ``git repack`` over ``git gc --aggressive``
732 the recommended parameters are ``git repack -a -d -f --depth=20
733 --window=250``. See `this detailed experiment
734 <http://vcscompare.blogspot.ru/2008/06/git-repack-parameters.html>`_
735 for explanation on the effects of these parameters.
736
737 From time to time run ``git fsck [--strict]`` to verify integrity of
738 the database. ``git fsck`` may produce a list of dangling objects;
739 that's not an error, just a reminder to perform regular maintenance.
740
741
742 Tips and tricks
743 ===============
744
745 Command-line options and arguments
746 ----------------------------------
747
748 `git help cli
749 <https://www.kernel.org/pub/software/scm/git/docs/gitcli.html>`_
750 recommends not to combine short options/flags. Most of the times it
751 works: ``git commit -av`` works perfectly, but there are situations
752 when it doesn't. E.g., ``git log -p -5`` cannot be combined as ``git
753 log -p5``.
754
755 Some options have arguments, some even have default arguments. In that
756 case the argument for such option must be spelled in a sticky way:
757 ``-Oarg``, never ``-O arg`` because for an option that has a default
758 argument the latter means "use default value for option ``-O`` and
759 pass ``arg`` further to the option parser". For example, ``git grep``
760 has an option ``-O`` that passes found files to a program; default
761 program for ``-O`` is pager (usually ``less``), but you can use your
762 editor::
763
764     $ git grep -Ovim # but not -O vim
765
766 BTW, there is a difference between running ``git grep -O`` and ``git
767 grep -Oless`` - in the latter case ``git grep`` passes ``+/pattern``
768 option to less.
769
770 bash/zsh completion
771 -------------------
772
773 It's a bit hard to type ``git rebase --interactive --preserve-merges
774 HEAD~5`` manually even for those who are happy to use command-line,
775 and this is where shell completion is of great help. Bash/zsh come
776 with programmable completion, often automatically preinstalled and
777 enabled, so if you have bash/zsh and git installed, chances are you
778 are already done - just go and use it at the command-line.
779
780 If you don't have necessary bits preinstalled, install and enable
781 bash_completion package. If you want to upgrade your git completion to
782 the latest and greatest download necessary file from `git contrib
783 <https://git.kernel.org/cgit/git/git.git/tree/contrib/completion>`_.
784
785 Git-for-windows comes with git-bash for which bash completion is
786 installed and enabled.
787
788 bash/zsh prompt
789 ---------------
790
791 For command-line lovers shell prompt can carry a lot of useful
792 information. To include git information in the prompt use
793 `git-prompt.sh
794 <https://git.kernel.org/cgit/git/git.git/tree/contrib/completion/git-prompt.sh>`_.
795 Read the detailed instructions in the file.
796
797 Search the Net for "git prompt" to find other prompt variants.
798
799
800 git on server
801 =============
802
803 The simplest way to publish a repository or a group of repositories is
804 ``git daemon``. The daemon provides anonymous access, by default it is
805 read-only. The repositories are accessible by git protocol (git://
806 URLs). Write access can be enabled but the protocol lacks any
807 authentication means, so it should be enabled only within a trusted
808 LAN. See ``git help daemon`` for details.
809
810 Git over ssh provides authentication and repo-level authorisation as
811 repositories can be made user- or group-writeable (see parameter
812 ``core.sharedRepository`` in ``git help config``). If that's too
813 permissive or too restrictive for some project's needs there is a
814 wrapper `gitolite <http://gitolite.com/gitolite/index.html>`_ that can
815 be configured to allow access with great granularity; gitolite has a
816 lot of documentation.
817
818 TODO: gitweb; cgit; Kallithea; pagure; gogs and gitea; gitlab.
819
820 https://git.kernel.org/cgit/git/git.git/tree/gitweb
821
822 http://git.zx2c4.com/cgit/
823
824 https://kallithea-scm.org/
825
826 https://pagure.io/
827
828 http://gogs.io/ and http://gitea.io/
829
830 https://about.gitlab.com/
831
832
833 From Mercurial to git
834 =====================
835
836 Mercurial for Git users https://mercurial.selenic.com/wiki/GitConcepts
837
838 https://github.com/felipec/git-remote-hg
839
840 https://hg-git.github.io/
841
842
843 References
844 ==========
845
846 .. [] 
847
848
849 Copyright
850 =========
851
852 This document has been placed in the public domain.
853
854
855 \f
856 ..
857    Local Variables:
858    mode: indented-text
859    indent-tabs-mode: nil
860    sentence-end-double-space: t
861    fill-column: 70
862    coding: utf-8
863    End:
864    vim: set fenc=us-ascii tw=70 :