gitfaq.txt 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. gitfaq(7)
  2. =========
  3. NAME
  4. ----
  5. gitfaq - Frequently asked questions about using Git
  6. SYNOPSIS
  7. --------
  8. gitfaq
  9. DESCRIPTION
  10. -----------
  11. The examples in this FAQ assume a standard POSIX shell, like `bash` or `dash`,
  12. and a user, A U Thor, who has the account `author` on the hosting provider
  13. `git.example.org`.
  14. Configuration
  15. -------------
  16. [[user-name]]
  17. What should I put in `user.name`?::
  18. You should put your personal name, generally a form using a given name
  19. and family name. For example, the current maintainer of Git uses "Junio
  20. C Hamano". This will be the name portion that is stored in every commit
  21. you make.
  22. +
  23. This configuration doesn't have any effect on authenticating to remote services;
  24. for that, see `credential.username` in linkgit:git-config[1].
  25. [[http-postbuffer]]
  26. What does `http.postBuffer` really do?::
  27. This option changes the size of the buffer that Git uses when pushing
  28. data to a remote over HTTP or HTTPS. If the data is larger than this
  29. size, libcurl, which handles the HTTP support for Git, will use chunked
  30. transfer encoding since it isn't known ahead of time what the size of
  31. the pushed data will be.
  32. +
  33. Leaving this value at the default size is fine unless you know that either the
  34. remote server or a proxy in the middle doesn't support HTTP/1.1 (which
  35. introduced the chunked transfer encoding) or is known to be broken with chunked
  36. data. This is often (erroneously) suggested as a solution for generic push
  37. problems, but since almost every server and proxy supports at least HTTP/1.1,
  38. raising this value usually doesn't solve most push problems. A server or proxy
  39. that didn't correctly support HTTP/1.1 and chunked transfer encoding wouldn't be
  40. that useful on the Internet today, since it would break lots of traffic.
  41. +
  42. Note that increasing this value will increase the memory used on every relevant
  43. push that Git does over HTTP or HTTPS, since the entire buffer is allocated
  44. regardless of whether or not it is all used. Thus, it's best to leave it at the
  45. default unless you are sure you need a different value.
  46. [[configure-editor]]
  47. How do I configure a different editor?::
  48. If you haven't specified an editor specifically for Git, it will by default
  49. use the editor you've configured using the `VISUAL` or `EDITOR` environment
  50. variables, or if neither is specified, the system default (which is usually
  51. `vi`). Since some people find `vi` difficult to use or prefer a different
  52. editor, it may be desirable to change the editor used.
  53. +
  54. If you want to configure a general editor for most programs which need one, you
  55. can edit your shell configuration (e.g., `~/.bashrc` or `~/.zshenv`) to contain
  56. a line setting the `EDITOR` or `VISUAL` environment variable to an appropriate
  57. value. For example, if you prefer the editor `nano`, then you could write the
  58. following:
  59. +
  60. ----
  61. export VISUAL=nano
  62. ----
  63. +
  64. If you want to configure an editor specifically for Git, you can either set the
  65. `core.editor` configuration value or the `GIT_EDITOR` environment variable. You
  66. can see linkgit:git-var[1] for details on the order in which these options are
  67. consulted.
  68. +
  69. Note that in all cases, the editor value will be passed to the shell, so any
  70. arguments containing spaces should be appropriately quoted. Additionally, if
  71. your editor normally detaches from the terminal when invoked, you should specify
  72. it with an argument that makes it not do that, or else Git will not see any
  73. changes. An example of a configuration addressing both of these issues on
  74. Windows would be the configuration `"C:\Program Files\Vim\gvim.exe" --nofork`,
  75. which quotes the filename with spaces and specifies the `--nofork` option to
  76. avoid backgrounding the process.
  77. Credentials
  78. -----------
  79. [[http-credentials]]
  80. How do I specify my credentials when pushing over HTTP?::
  81. The easiest way to do this is to use a credential helper via the
  82. `credential.helper` configuration. Most systems provide a standard
  83. choice to integrate with the system credential manager. For example,
  84. Git for Windows provides the `wincred` credential manager, macOS has the
  85. `osxkeychain` credential manager, and Unix systems with a standard
  86. desktop environment can use the `libsecret` credential manager. All of
  87. these store credentials in an encrypted store to keep your passwords or
  88. tokens secure.
  89. +
  90. In addition, you can use the `store` credential manager which stores in a file
  91. in your home directory, or the `cache` credential manager, which does not
  92. permanently store your credentials, but does prevent you from being prompted for
  93. them for a certain period of time.
  94. +
  95. You can also just enter your password when prompted. While it is possible to
  96. place the password (which must be percent-encoded) in the URL, this is not
  97. particularly secure and can lead to accidental exposure of credentials, so it is
  98. not recommended.
  99. [[http-credentials-environment]]
  100. How do I read a password or token from an environment variable?::
  101. The `credential.helper` configuration option can also take an arbitrary
  102. shell command that produces the credential protocol on standard output.
  103. This is useful when passing credentials into a container, for example.
  104. +
  105. Such a shell command can be specified by starting the option value with an
  106. exclamation point. If your password or token were stored in the `GIT_TOKEN`,
  107. you could run the following command to set your credential helper:
  108. +
  109. ----
  110. $ git config credential.helper \
  111. '!f() { echo username=author; echo "password=$GIT_TOKEN"; };f'
  112. ----
  113. [[http-reset-credentials]]
  114. How do I change the password or token I've saved in my credential manager?::
  115. Usually, if the password or token is invalid, Git will erase it and
  116. prompt for a new one. However, there are times when this doesn't always
  117. happen. To change the password or token, you can erase the existing
  118. credentials and then Git will prompt for new ones. To erase
  119. credentials, use a syntax like the following (substituting your username
  120. and the hostname):
  121. +
  122. ----
  123. $ echo url=https://author@git.example.org | git credential reject
  124. ----
  125. [[multiple-accounts-http]]
  126. How do I use multiple accounts with the same hosting provider using HTTP?::
  127. Usually the easiest way to distinguish between these accounts is to use
  128. the username in the URL. For example, if you have the accounts `author`
  129. and `committer` on `git.example.org`, you can use the URLs
  130. https://author@git.example.org/org1/project1.git and
  131. https://committer@git.example.org/org2/project2.git. This way, when you
  132. use a credential helper, it will automatically try to look up the
  133. correct credentials for your account. If you already have a remote set
  134. up, you can change the URL with something like `git remote set-url
  135. origin https://author@git.example.org/org1/project1.git` (see
  136. linkgit:git-remote[1] for details).
  137. [[multiple-accounts-ssh]]
  138. How do I use multiple accounts with the same hosting provider using SSH?::
  139. With most hosting providers that support SSH, a single key pair uniquely
  140. identifies a user. Therefore, to use multiple accounts, it's necessary
  141. to create a key pair for each account. If you're using a reasonably
  142. modern OpenSSH version, you can create a new key pair with something
  143. like `ssh-keygen -t ed25519 -f ~/.ssh/id_committer`. You can then
  144. register the public key (in this case, `~/.ssh/id_committer.pub`; note
  145. the `.pub`) with the hosting provider.
  146. +
  147. Most hosting providers use a single SSH account for pushing; that is, all users
  148. push to the `git` account (e.g., `git@git.example.org`). If that's the case for
  149. your provider, you can set up multiple aliases in SSH to make it clear which key
  150. pair to use. For example, you could write something like the following in
  151. `~/.ssh/config`, substituting the proper private key file:
  152. +
  153. ----
  154. # This is the account for author on git.example.org.
  155. Host example_author
  156. HostName git.example.org
  157. User git
  158. # This is the key pair registered for author with git.example.org.
  159. IdentityFile ~/.ssh/id_author
  160. IdentitiesOnly yes
  161. # This is the account for committer on git.example.org.
  162. Host example_committer
  163. HostName git.example.org
  164. User git
  165. # This is the key pair registered for committer with git.example.org.
  166. IdentityFile ~/.ssh/id_committer
  167. IdentitiesOnly yes
  168. ----
  169. +
  170. Then, you can adjust your push URL to use `git@example_author` or
  171. `git@example_committer` instead of `git@example.org` (e.g., `git remote set-url
  172. git@example_author:org1/project1.git`).
  173. Common Issues
  174. -------------
  175. [[last-commit-amend]]
  176. I've made a mistake in the last commit. How do I change it?::
  177. You can make the appropriate change to your working tree, run `git add
  178. <file>` or `git rm <file>`, as appropriate, to stage it, and then `git
  179. commit --amend`. Your change will be included in the commit, and you'll
  180. be prompted to edit the commit message again; if you wish to use the
  181. original message verbatim, you can use the `--no-edit` option to `git
  182. commit` in addition, or just save and quit when your editor opens.
  183. [[undo-previous-change]]
  184. I've made a change with a bug and it's been included in the main branch. How should I undo it?::
  185. The usual way to deal with this is to use `git revert`. This preserves
  186. the history that the original change was made and was a valuable
  187. contribution, but also introduces a new commit that undoes those changes
  188. because the original had a problem. The commit message of the revert
  189. indicates the commit which was reverted and is usually edited to include
  190. an explanation as to why the revert was made.
  191. [[ignore-tracked-files]]
  192. How do I ignore changes to a tracked file?::
  193. Git doesn't provide a way to do this. The reason is that if Git needs
  194. to overwrite this file, such as during a checkout, it doesn't know
  195. whether the changes to the file are precious and should be kept, or
  196. whether they are irrelevant and can safely be destroyed. Therefore, it
  197. has to take the safe route and always preserve them.
  198. +
  199. It's tempting to try to use certain features of `git update-index`, namely the
  200. assume-unchanged and skip-worktree bits, but these don't work properly for this
  201. purpose and shouldn't be used this way.
  202. +
  203. If your goal is to modify a configuration file, it can often be helpful to have
  204. a file checked into the repository which is a template or set of defaults which
  205. can then be copied alongside and modified as appropriate. This second, modified
  206. file is usually ignored to prevent accidentally committing it.
  207. [[files-in-gitignore-are-tracked]]
  208. I asked Git to ignore various files, yet they are still tracked::
  209. A `gitignore` file ensures that certain file(s) which are not
  210. tracked by Git remain untracked. However, sometimes particular
  211. file(s) may have been tracked before adding them into the
  212. `.gitignore`, hence they still remain tracked. To untrack and
  213. ignore files/patterns, use `git rm --cached <file/pattern>`
  214. and add a pattern to `.gitignore` that matches the <file>.
  215. See linkgit:gitignore[5] for details.
  216. [[fetching-and-pulling]]
  217. How do I know if I want to do a fetch or a pull?::
  218. A fetch stores a copy of the latest changes from the remote
  219. repository, without modifying the working tree or current branch.
  220. You can then at your leisure inspect, merge, rebase on top of, or
  221. ignore the upstream changes. A pull consists of a fetch followed
  222. immediately by either a merge or rebase. See linkgit:git-pull[1].
  223. Merging and Rebasing
  224. --------------------
  225. [[long-running-squash-merge]]
  226. What kinds of problems can occur when merging long-lived branches with squash merges?::
  227. In general, there are a variety of problems that can occur when using squash
  228. merges to merge two branches multiple times. These can include seeing extra
  229. commits in `git log` output, with a GUI, or when using the `...` notation to
  230. express a range, as well as the possibility of needing to re-resolve conflicts
  231. again and again.
  232. +
  233. When Git does a normal merge between two branches, it considers exactly three
  234. points: the two branches and a third commit, called the _merge base_, which is
  235. usually the common ancestor of the commits. The result of the merge is the sum
  236. of the changes between the merge base and each head. When you merge two
  237. branches with a regular merge commit, this results in a new commit which will
  238. end up as a merge base when they're merged again, because there is now a new
  239. common ancestor. Git doesn't have to consider changes that occurred before the
  240. merge base, so you don't have to re-resolve any conflicts you resolved before.
  241. +
  242. When you perform a squash merge, a merge commit isn't created; instead, the
  243. changes from one side are applied as a regular commit to the other side. This
  244. means that the merge base for these branches won't have changed, and so when Git
  245. goes to perform its next merge, it considers all of the changes that it
  246. considered the last time plus the new changes. That means any conflicts may
  247. need to be re-resolved. Similarly, anything using the `...` notation in `git
  248. diff`, `git log`, or a GUI will result in showing all of the changes since the
  249. original merge base.
  250. +
  251. As a consequence, if you want to merge two long-lived branches repeatedly, it's
  252. best to always use a regular merge commit.
  253. [[merge-two-revert-one]]
  254. If I make a change on two branches but revert it on one, why does the merge of those branches include the change?::
  255. By default, when Git does a merge, it uses a strategy called the recursive
  256. strategy, which does a fancy three-way merge. In such a case, when Git
  257. performs the merge, it considers exactly three points: the two heads and a
  258. third point, called the _merge base_, which is usually the common ancestor of
  259. those commits. Git does not consider the history or the individual commits
  260. that have happened on those branches at all.
  261. +
  262. As a result, if both sides have a change and one side has reverted that change,
  263. the result is to include the change. This is because the code has changed on
  264. one side and there is no net change on the other, and in this scenario, Git
  265. adopts the change.
  266. +
  267. If this is a problem for you, you can do a rebase instead, rebasing the branch
  268. with the revert onto the other branch. A rebase in this scenario will revert
  269. the change, because a rebase applies each individual commit, including the
  270. revert. Note that rebases rewrite history, so you should avoid rebasing
  271. published branches unless you're sure you're comfortable with that. See the
  272. NOTES section in linkgit:git-rebase[1] for more details.
  273. Hooks
  274. -----
  275. [[restrict-with-hooks]]
  276. How do I use hooks to prevent users from making certain changes?::
  277. The only safe place to make these changes is on the remote repository
  278. (i.e., the Git server), usually in the `pre-receive` hook or in a
  279. continuous integration (CI) system. These are the locations in which
  280. policy can be enforced effectively.
  281. +
  282. It's common to try to use `pre-commit` hooks (or, for commit messages,
  283. `commit-msg` hooks) to check these things, which is great if you're working as a
  284. solo developer and want the tooling to help you. However, using hooks on a
  285. developer machine is not effective as a policy control because a user can bypass
  286. these hooks with `--no-verify` without being noticed (among various other ways).
  287. Git assumes that the user is in control of their local repositories and doesn't
  288. try to prevent this or tattle on the user.
  289. +
  290. In addition, some advanced users find `pre-commit` hooks to be an impediment to
  291. workflows that use temporary commits to stage work in progress or that create
  292. fixup commits, so it's better to push these kinds of checks to the server
  293. anyway.
  294. Cross-Platform Issues
  295. ---------------------
  296. [[windows-text-binary]]
  297. I'm on Windows and my text files are detected as binary.::
  298. Git works best when you store text files as UTF-8. Many programs on
  299. Windows support UTF-8, but some do not and only use the little-endian
  300. UTF-16 format, which Git detects as binary. If you can't use UTF-8 with
  301. your programs, you can specify a working tree encoding that indicates
  302. which encoding your files should be checked out with, while still
  303. storing these files as UTF-8 in the repository. This allows tools like
  304. linkgit:git-diff[1] to work as expected, while still allowing your tools
  305. to work.
  306. +
  307. To do so, you can specify a linkgit:gitattributes[5] pattern with the
  308. `working-tree-encoding` attribute. For example, the following pattern sets all
  309. C files to use UTF-16LE-BOM, which is a common encoding on Windows:
  310. +
  311. ----
  312. *.c working-tree-encoding=UTF-16LE-BOM
  313. ----
  314. +
  315. You will need to run `git add --renormalize` to have this take effect. Note
  316. that if you are making these changes on a project that is used across platforms,
  317. you'll probably want to make it in a per-user configuration file or in the one
  318. in `$GIT_DIR/info/attributes`, since making it in a `.gitattributes` file in the
  319. repository will apply to all users of the repository.
  320. +
  321. See the following entry for information about normalizing line endings as well,
  322. and see linkgit:gitattributes[5] for more information about attribute files.
  323. [[windows-diff-control-m]]
  324. I'm on Windows and git diff shows my files as having a `^M` at the end.::
  325. By default, Git expects files to be stored with Unix line endings. As such,
  326. the carriage return (`^M`) that is part of a Windows line ending is shown
  327. because it is considered to be trailing whitespace. Git defaults to showing
  328. trailing whitespace only on new lines, not existing ones.
  329. +
  330. You can store the files in the repository with Unix line endings and convert
  331. them automatically to your platform's line endings. To do that, set the
  332. configuration option `core.eol` to `native` and see the following entry for
  333. information about how to configure files as text or binary.
  334. +
  335. You can also control this behavior with the `core.whitespace` setting if you
  336. don't wish to remove the carriage returns from your line endings.
  337. [[always-modified-files-case]]
  338. Why do I have a file that's always modified?::
  339. Internally, Git always stores file names as sequences of bytes and doesn't
  340. perform any encoding or case folding. However, Windows and macOS by default
  341. both perform case folding on file names. As a result, it's possible to end up
  342. with multiple files or directories whose names differ only in case. Git can
  343. handle this just fine, but the file system can store only one of these files,
  344. so when Git reads the other file to see its contents, it looks modified.
  345. +
  346. It's best to remove one of the files such that you only have one file. You can
  347. do this with commands like the following (assuming two files `AFile.txt` and
  348. `afile.txt`) on an otherwise clean working tree:
  349. +
  350. ----
  351. $ git rm --cached AFile.txt
  352. $ git commit -m 'Remove files conflicting in case'
  353. $ git checkout .
  354. ----
  355. +
  356. This avoids touching the disk, but removes the additional file. Your project
  357. may prefer to adopt a naming convention, such as all-lowercase names, to avoid
  358. this problem from occurring again; such a convention can be checked using a
  359. `pre-receive` hook or as part of a continuous integration (CI) system.
  360. +
  361. It is also possible for perpetually modified files to occur on any platform if a
  362. smudge or clean filter is in use on your system but a file was previously
  363. committed without running the smudge or clean filter. To fix this, run the
  364. following on an otherwise clean working tree:
  365. +
  366. ----
  367. $ git add --renormalize .
  368. ----
  369. [[recommended-storage-settings]]
  370. What's the recommended way to store files in Git?::
  371. While Git can store and handle any file of any type, there are some
  372. settings that work better than others. In general, we recommend that
  373. text files be stored in UTF-8 without a byte-order mark (BOM) with LF
  374. (Unix-style) endings. We also recommend the use of UTF-8 (again,
  375. without BOM) in commit messages. These are the settings that work best
  376. across platforms and with tools such as `git diff` and `git merge`.
  377. +
  378. Additionally, if you have a choice between storage formats that are text based
  379. or non-text based, we recommend storing files in the text format and, if
  380. necessary, transforming them into the other format. For example, a text-based
  381. SQL dump with one record per line will work much better for diffing and merging
  382. than an actual database file. Similarly, text-based formats such as Markdown
  383. and AsciiDoc will work better than binary formats such as Microsoft Word and
  384. PDF.
  385. +
  386. Similarly, storing binary dependencies (e.g., shared libraries or JAR files) or
  387. build products in the repository is generally not recommended. Dependencies and
  388. build products are best stored on an artifact or package server with only
  389. references, URLs, and hashes stored in the repository.
  390. +
  391. We also recommend setting a linkgit:gitattributes[5] file to explicitly mark
  392. which files are text and which are binary. If you want Git to guess, you can
  393. set the attribute `text=auto`. For example, the following might be appropriate
  394. in some projects:
  395. +
  396. ----
  397. # By default, guess.
  398. * text=auto
  399. # Mark all C files as text.
  400. *.c text
  401. # Mark all JPEG files as binary.
  402. *.jpg binary
  403. ----
  404. +
  405. These settings help tools pick the right format for output such as patches and
  406. result in files being checked out in the appropriate line ending for the
  407. platform.
  408. GIT
  409. ---
  410. Part of the linkgit:git[1] suite