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