]> git.phdru.name Git - git-wiki.git/blob - pep-git.txt
Add msysGit
[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: Active
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 `Git Magic
49 <http://www-cs-students.stanford.edu/~blynn/gitmagic/index.html>`_,
50 also with a number of translations.
51
52 Advanced documentation
53 ----------------------
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
83 `git-osx-installer
84 <http://sourceforge.net/projects/git-osx-installer/files/>`_.
85
86 Initial configuration
87 ---------------------
88
89 This simple code is often appears in documentation, but it is
90 important so let repeat it here. Git marks every commit with author
91 and committer names/emails, so configure your real name and preferred
92 email::
93
94     $ git config --global user.name "User Name"
95     $ git config --global user.email user.name@example.org
96
97
98 Examples in this PEP
99 ====================
100
101 Examples of git commands in this PEP use the following approach. It is
102 supposed that you, the user, works with a local repository named
103 ``python`` that has an upstream remote repo named ``origin``. Your
104 local repo has two branches ``v1`` and ``v2``. For most examples the
105 currently checked out branch is ``v2``. That is, it's assumed you have
106 done something like that::
107
108     $ git clone -b v2 http://git.python.org/python.git
109     $ cd python
110     $ git branch v1 origin/v1
111
112 The last command creates a new local branch v1 and sets
113 remotes/origin/v1 as its upstream remote branch.
114
115 The same result can achieved with commands::
116
117     $ git clone -b v1 http://git.python.org/python.git
118     $ cd python
119     $ git checkout --track origin/v2
120
121 The last command creates a new local branch v2, sets
122 remotes/origin/v2 as its upstream remote branch and checks it out into
123 the working directory.
124
125
126 Branches and branches
127 =====================
128
129 Git terminology can be a bit misleading. Take, for example, the term
130 "branch". In git it has two meanings. A branch is a directed line of
131 commits (possibly with merges). And a branch is a label or a pointer
132 assigned to a line of commits. It is important to differentiate when
133 you talk about commits and when about their labels. Lines of commits
134 are by itself unnamed and are usually only lengthening and merging.
135 Labels, on the other hand, can be created, moved, renamed and deleted
136 freely.
137
138
139 Remote repository and remote branches
140 =====================================
141
142 Another example of slightly misleading terminology. Remote
143 repositories are really remote, you access them via network (well, a
144 remote repository can be on your local disk, but it's still remote
145 because it's not the current repo).
146
147 Remote branches, on the other hand, are branches (pointers to commits)
148 in your local repository. They are there for you to remember what
149 branches and commits have been pulled from and pushed to what remote
150 repos (you can pull from and push to many remotes). Remote branches
151 live under ``remotes/REMOTE`` namespaces, e.g. ``remotes/origin/v2``.
152
153 To see the status of remote branches run::
154
155     $ git branch -rv
156
157 To see local and remote branches (and tags) pointing to commits::
158
159     $ git log --decorate
160
161 You never do your own development on remote branches. You create a
162 local branch that has a remote branch as upstream and do development
163 on that local branch. On push git updates remote branches, and on pull
164 git updates remote branches and fast-forwards, merges or rebases local
165 branches.
166
167 When you do an initial clone like this::
168
169     $ git clone -b v1 http://git.python.org/python.git
170
171 git clones remote repository ``http://git.python.org/python.git`` to
172 directory ``python``, creates remote branches and checks out branch
173 ``v1`` into the working directory.
174
175 Updating local and remote branches
176 ----------------------------------
177
178 There is a major difference between
179
180 ::
181
182     $ git fetch REMOTE BRANCH
183
184 and
185
186 ::
187
188     $ git fetch REMOTE BRANCH:BRANCH
189
190 The first command fetches commits from the named BRANCH in the REMOTE
191 repository that are not in your repository and leaves the id (the
192 hash) of the head commit in file .git/FETCH_HEAD. But it doesn't
193 update any branch (doesn't move any pointer).
194
195 The second command fetches commits from the named BRANCH in the REMOTE
196 repository that are not in your repository and updates both the local
197 branch BRANCH and its upstream remote branch. But it refuses to update
198 branches in case of non-fast-forward. And it refuses to update the
199 current branch.
200
201 The first command is used internally by ``git pull``.
202
203 ::
204
205     $ git pull REMOTE BRANCH
206
207 is equivalent to
208
209 ::
210
211     $ git fetch REMOTE BRANCH
212     $ git merge FETCH_HEAD # FETCH_HEAD is a literal here
213
214 Certainly, BRANCH in that case should be your current branch. If you
215 want to merge a different branch into your current branch first update
216 that non-current branch and then merge::
217
218     $ git fetch origin v1:v1 # Update v1
219     $ git pull --rebase origin v2 # Update the current branch v2 using
220                                   # rebase instead of merge
221     $ git merge v1
222
223 It is possible to configure git to make it fetch/pull a few branches
224 or all branches at once, so you can simply run
225
226 ::
227
228     $ git pull origin
229
230 or even
231
232 ::
233
234     $ git pull
235
236 Push
237 ''''
238
239 Pushing is a bit simpler. There is only one command ``push``. When you
240 run
241
242 ::
243
244     $ git push origin v1 v2
245
246 git guesses (knowing upstream remote branches) that you really want
247
248 ::
249
250     $ git push origin v1:v1 v2:v2
251
252 Git pushes commits to the remote repo and updates remote branches. Git
253 refuses to push commits that aren't fast-forwardable. You can
254 force-push anyway, but please remember - you can force-push to your
255 own repositories but don't force-push to public or shared repos. If
256 you find git refuses to push commits that aren't fast-forwardable,
257 better fetch and merge commits from the remote repo (or rebase your
258 commits on top of the fetched commits), then push. Only force-push if
259 you know what you do and why you do it. See the section `Commit
260 editing and caveats`_ below.
261
262 It is possible to configure git to make it push a few branches or all
263 branches at once, so you can simply run
264
265 ::
266
267     $ git push origin
268
269 or even
270
271 ::
272
273     $ git push
274
275 Git refuses to push a branch if it's the current branch in the remote
276 non-bare repository: git refuses to update remote working directory.
277 You really should push only to bare repositories. For non-bare
278 repositories git prefers pull-based workflow.
279
280 Tags
281 ''''
282
283 Git automatically fetches tags that point to commits being fetched
284 during fetch/pull. To fetch all tags (and commits they point to) run
285 ``git fetch --tags origin``. To fetch some specific tags fetch them
286 explicitly::
287
288     $ git fetch origin tag NAME1 tag NAME2...
289
290 For example::
291
292     $ git fetch origin tag 1.4.2 tag 2.1.7
293
294 Git doesn't automatically pushes tags. That allows you to have private
295 tags (lightweight tags are also private for a repo, they cannot be
296 pushed). To push tag(s) list them explicitly::
297
298     $ git push origin tag 1.4.2
299     $ git push origin v1 v2 tag 2.1.7
300
301
302 Commit editing and caveats
303 ==========================
304
305 A warning not to edit published (pushed) commits also appears in
306 documentation but it's repeated here anyway as it's very important.
307
308 It is possible to recover from forced push but it's PITA for the
309 entire team. Please avoid it.
310
311 To see what commits have not been published yet compare the head of the
312 branch with its upstream remote branch::
313
314     $ git log origin/v2..
315     $ git log origin/v1..v1
316
317 For every branch that has an upstream remote branch git maintains an
318 alias @{upstream} (short version @{u}), so the commands above can be
319 given as::
320
321     $ git log @{u}..
322     $ git log v1@{u}..v1
323
324 To see the status of all branches::
325
326     $ git branch -avv
327
328 To compare the status of local branches with a remote repo::
329
330     $ git remote show origin
331
332 Read `how to recover from upstream rebase
333 <https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase>`_.
334 It is in ``git help rebase``.
335
336 On the other hand don't be too afraid about commit editing. You can
337 safely edit, remove, reorder, combine and split commits that hasn't
338 been pushed yet. You can even push commits to your own (backup) repo,
339 edit them later and force-push edited commits to replace what has
340 already been pushed. Not a problem until commits are in a public
341 or shared repository.
342
343
344 Undo
345 ====
346
347 TODO: describe undo strategies: git reset, git revert, git checkout,
348 git reflog. "Commit early, commit often".
349
350 How to undo a merge
351 https://kernel.org/pub/software/scm/git/docs/howto/revert-a-faulty-merge.html
352
353
354 Advanced topics
355 ===============
356
357 Staging area
358 ------------
359
360 Staging area aka index is a distinguishing feature of git. See
361 `WhatIsTheIndex
362 <https://git.wiki.kernel.org/index.php/WhatIsTheIndex>`_ and
363 `IndexCommandQuickref
364 <https://git.wiki.kernel.org/index.php/IndexCommandQuickref>`_ in Git
365 Wiki.
366
367
368 Merge or rebase?
369 ================
370
371
372 Null-merges
373 ===========
374
375 Git has a builtin strategy for what Python core developers call
376 "null-merge"::
377
378     $ git merge -s ours v1 # null-merge v1 into v2
379
380
381 ReReRe
382 ======
383
384 https://git-scm.com/book/en/Git-Tools-Rerere
385
386
387 Advanced configuration
388 ======================
389
390 Line endings
391 ------------
392
393 Git has builtin mechanisms to handle line endings.
394
395 TODO: describe crlf configuration and .gitattributes.
396
397
398 Database maintenance
399 ====================
400
401 TODO: dangling objects, git gc, git repack.
402
403
404 Tips and tricks
405 ===============
406
407 TODO: bash/zsh completion, bash/zsh prompt.
408
409
410 From Mercurial to git
411 =====================
412
413 Mercurial for Git users https://mercurial.selenic.com/wiki/GitConcepts
414
415 https://github.com/felipec/git-remote-hg
416
417 https://hg-git.github.io/
418
419
420 References
421 ==========
422
423 .. [] 
424
425
426 Copyright
427 =========
428
429 This document has been placed in the public domain.
430
431
432 \f
433 ..
434    Local Variables:
435    mode: indented-text
436    indent-tabs-mode: nil
437    sentence-end-double-space: t
438    fill-column: 70
439    coding: utf-8
440    End:
441    vim: set fenc=us-ascii tw=70 :