git-howto.txt 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. About Git write access:
  2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. Before everything else, you should know how to use GIT properly.
  4. Luckily Git comes with excellent documentation.
  5. git --help
  6. man git
  7. shows you the available subcommands,
  8. git <command> --help
  9. man git-<command>
  10. shows information about the subcommand <command>.
  11. The most comprehensive manual is the website Git Reference
  12. http://gitref.org/
  13. For more information about the Git project, visit
  14. http://git-scm.com/
  15. Consult these resources whenever you have problems, they are quite exhaustive.
  16. You do not need a special username or password.
  17. All you need is to provide a ssh public key to the Git server admin.
  18. What follows now is a basic introduction to Git and some FFmpeg-specific
  19. guidelines. Read it at least once, if you are granted commit privileges to the
  20. FFmpeg project you are expected to be familiar with these rules.
  21. I. BASICS:
  22. ==========
  23. 0. Get GIT:
  24. You can get git from http://git-scm.com/
  25. 1. Cloning the source tree:
  26. git clone git://git.videolan.org/ffmpeg <target>
  27. This will put the FFmpeg sources into the directory <target>.
  28. git clone git@git.videolan.org:ffmpeg <target>
  29. This will put the FFmpeg sources into the directory <target> and let
  30. you push back your changes to the remote repository.
  31. 2. Updating the source tree to the latest revision:
  32. git pull (--ff-only)
  33. pulls in the latest changes from the tracked branch. The tracked branch
  34. can be remote. By default the master branch tracks the branch master in
  35. the remote origin.
  36. Caveat: Since merge commits are forbidden at least for the initial
  37. months of git --ff-only or --rebase (see below) are recommended.
  38. --ff-only will fail and not create merge commits if your branch
  39. has diverged (has a different history) from the tracked branch.
  40. 2.a Rebasing your local branches:
  41. git pull --rebase
  42. fetches the changes from the main repository and replays your local commits
  43. over it. This is required to keep all your local changes at the top of
  44. FFmpeg's master tree. The master tree will reject pushes with merge commits.
  45. 3. Adding/removing files/directories:
  46. git add [-A] <filename/dirname>
  47. git rm [-r] <filename/dirname>
  48. GIT needs to get notified of all changes you make to your working
  49. directory that makes files appear or disappear.
  50. Line moves across files are automatically tracked.
  51. 4. Showing modifications:
  52. git diff <filename(s)>
  53. will show all local modifications in your working directory as unified diff.
  54. 5. Inspecting the changelog:
  55. git log <filename(s)>
  56. You may also use the graphical tools like gitview or gitk or the web
  57. interface available at http://git.videolan.org
  58. 6. Checking source tree status:
  59. git status
  60. detects all the changes you made and lists what actions will be taken in case
  61. of a commit (additions, modifications, deletions, etc.).
  62. 7. Committing:
  63. git diff --check
  64. to double check your changes before committing them to avoid trouble later
  65. on. All experienced developers do this on each and every commit, no matter
  66. how small.
  67. Every one of them has been saved from looking like a fool by this many times.
  68. It's very easy for stray debug output or cosmetic modifications to slip in,
  69. please avoid problems through this extra level of scrutiny.
  70. For cosmetics-only commits you should get (almost) empty output from
  71. git diff -w -b <filename(s)>
  72. Also check the output of
  73. git status
  74. to make sure you don't have untracked files or deletions.
  75. git add [-i|-p|-A] <filenames/dirnames>
  76. Make sure you have told git your name and email address, e.g. by running
  77. git config --global user.name "My Name"
  78. git config --global user.email my@email.invalid
  79. (--global to set the global configuration for all your git checkouts).
  80. Git will select the changes to the files for commit. Optionally you can use
  81. the interactive or the patch mode to select hunk by hunk what should be
  82. added to the commit.
  83. git commit
  84. Git will commit the selected changes to your current local branch.
  85. You will be prompted for a log message in an editor, which is either
  86. set in your personal configuration file through
  87. git config core.editor
  88. or set by one of the following environment variables:
  89. GIT_EDITOR, VISUAL or EDITOR.
  90. Log messages should be concise but descriptive. Explain why you made a change,
  91. what you did will be obvious from the changes themselves most of the time.
  92. Saying just "bug fix" or "10l" is bad. Remember that people of varying skill
  93. levels look at and educate themselves while reading through your code. Don't
  94. include filenames in log messages, Git provides that information.
  95. Possibly make the commit message have a terse, descriptive first line, an
  96. empty line and then a full description. The first line will be used to name
  97. the patch by git format-patch.
  98. 8. Renaming/moving/copying files or contents of files:
  99. Git automatically tracks such changes, making those normal commits.
  100. mv/cp path/file otherpath/otherfile
  101. git add [-A] .
  102. git commit
  103. Do not move, rename or copy files of which you are not the maintainer without
  104. discussing it on the mailing list first!
  105. 9. Reverting broken commits
  106. git revert <commit>
  107. git revert will generate a revert commit. This will not make the faulty
  108. commit disappear from the history.
  109. git reset <commit>
  110. git reset will uncommit the changes till <commit> rewriting the current
  111. branch history.
  112. git commit --amend
  113. allows to amend the last commit details quickly.
  114. git rebase -i origin/master
  115. will replay local commits over the main repository allowing to edit,
  116. merge or remove some of them in the process.
  117. Note that the reset, commit --amend and rebase rewrite history, so you
  118. should use them ONLY on your local or topic branches.
  119. The main repository will reject those changes.
  120. 10. Preparing a patchset.
  121. git format-patch <commit> [-o directory]
  122. will generate a set of patches out of the current branch starting from
  123. commit. By default the patches are created in the current directory.
  124. 11. Sending patches for review
  125. git send-email <commit list|directory>
  126. will send the patches created by git format-patch or directly generates
  127. them. All the email fields can be configured in the global/local
  128. configuration or overridden by command line.
  129. 12. Pushing changes to remote trees
  130. git push
  131. Will push the changes to the default remote (origin).
  132. Git will prevent you from pushing changes if the local and remote trees are
  133. out of sync. Refer to 2 and 2.a to sync the local tree.
  134. git remote add <name> <url>
  135. Will add additional remote with a name reference, it is useful if you want
  136. to push your local branch for review on a remote host.
  137. git push <remote> <refspec>
  138. Will push the changes to the remote repository. Omitting refspec makes git
  139. push update all the remote branches matching the local ones.
  140. 13. Finding a specific svn revision
  141. Since version 1.7.1 git supports ':/foo' syntax for specifying commits
  142. based on a regular expression. see man gitrevisions
  143. git show :/'as revision 23456'
  144. will show the svn changeset r23456. With older git versions searching in
  145. the git log output is the easiest option (especially if a pager with
  146. search capabilities is used).
  147. This commit can be checked out with
  148. git checkout -b svn_23456 :/'as revision 23456'
  149. or for git < 1.7.1 with
  150. git checkout -b svn_23456 $SHA1
  151. where $SHA1 is the commit SHA1 from the 'git log' output.
  152. Contact the project admins <root at ffmpeg dot org> if you have technical
  153. problems with the GIT server.