1Productivity Notes
2==================
3
4Table of Contents
5-----------------
6
7* [General](#general)
8   * [Cache compilations with `ccache`](#cache-compilations-with-ccache)
9   * [Disable features with `./configure`](#disable-features-with-configure)
10   * [Make use of your threads with `make -j`](#make-use-of-your-threads-with-make--j)
11   * [Only build what you need](#only-build-what-you-need)
12   * [Multiple working directories with `git worktrees`](#multiple-working-directories-with-git-worktrees)
13   * [Interactive "dummy rebases" for fixups and execs with `git merge-base`](#interactive-dummy-rebases-for-fixups-and-execs-with-git-merge-base)
14* [Writing code](#writing-code)
15   * [Format C/C++ diffs with `clang-format-diff.py`](#format-cc-diffs-with-clang-format-diffpy)
16   * [Format Python diffs with `yapf-diff.py`](#format-python-diffs-with-yapf-diffpy)
17* [Rebasing/Merging code](#rebasingmerging-code)
18   * [More conflict context with `merge.conflictstyle diff3`](#more-conflict-context-with-mergeconflictstyle-diff3)
19* [Reviewing code](#reviewing-code)
20   * [Reduce mental load with `git diff` options](#reduce-mental-load-with-git-diff-options)
21   * [Reference PRs easily with `refspec`s](#reference-prs-easily-with-refspecs)
22   * [Diff the diffs with `git range-diff`](#diff-the-diffs-with-git-range-diff)
23
24General
25------
26
27### Cache compilations with `ccache`
28
29The easiest way to faster compile times is to cache compiles. `ccache` is a way to do so, from its description at the time of writing:
30
31> ccache is a compiler cache. It speeds up recompilation by caching the result of previous compilations and detecting when the same compilation is being done again. Supported languages are C, C++, Objective-C and Objective-C++.
32
33Install `ccache` through your distribution's package manager, and run `./configure` with your normal flags to pick it up.
34
35To use ccache for all your C/C++ projects, follow the symlinks method [here](https://ccache.samba.org/manual/latest.html#_run_modes) to set it up.
36
37To get the most out of ccache, put something like this in `~/.ccache/ccache.conf`:
38
39```
40max_size = 50.0G  # or whatever cache size you prefer; default is 5G; 0 means unlimited
41base_dir = /home/yourname  # or wherever you keep your source files
42```
43
44Note: base_dir is required for ccache to share cached compiles of the same file across different repositories / paths; it will only do this for paths under base_dir. So this option is required for effective use of ccache with git worktrees (described below).
45
46You _must not_ set base_dir to "/", or anywhere that contains system headers (according to the ccache docs).
47
48### Disable features with `./configure`
49
50After running `./autogen.sh`, which generates the `./configure` file, use `./configure --help` to identify features that you can disable to save on compilation time. A few common flags:
51
52```sh
53--without-miniupnpc
54--disable-bench
55--disable-wallet
56--without-gui
57```
58
59If you do need the wallet enabled, it is common for devs to add `--with-incompatible-bdb`. This uses your system bdb version for the wallet, so you don't have to find a copy of bdb 4.8. Wallets from such a build will be incompatible with any release binary (and vice versa), so use with caution on mainnet.
60
61### Make use of your threads with `make -j`
62
63If you have multiple threads on your machine, you can tell `make` to utilize all of them with:
64
65```sh
66make -j"$(($(nproc)+1))"
67```
68
69### Only build what you need
70
71When rebuilding during development, note that running `make`, without giving a target, will do a lot of work you probably don't need. It will build the GUI (unless you've disabled it) and all the tests (which take much longer to build than the app does).
72
73Obviously, it is important to build and run the tests at appropriate times -- but when you just want a quick compile to check your work, consider picking one or a set of build targets relevant to what you're working on, e.g.:
74
75```sh
76make src/bitcoind src/bitcoin-cli
77make src/qt/bitcoin-qt
78make -C src bitcoin_bench
79```
80
81(You can and should combine this with `-j`, as above, for a parallel build.)
82
83### Multiple working directories with `git worktrees`
84
85If you work with multiple branches or multiple copies of the repository, you should try `git worktrees`.
86
87To create a new branch that lives under a new working directory without disrupting your current working directory (useful for creating pull requests):
88```sh
89git worktree add -b my-shiny-new-branch ../living-at-my-new-working-directory based-on-my-crufty-old-commit-ish
90```
91
92To simply check out a commit-ish under a new working directory without disrupting your current working directory (useful for reviewing pull requests):
93```sh
94git worktree add --checkout ../where-my-checkout-commit-ish-will-live my-checkout-commit-ish
95```
96
97### Interactive "dummy rebases" for fixups and execs with `git merge-base`
98
99When rebasing, we often want to do a "dummy rebase," whereby we are not rebasing over an updated master but rather over the last common commit with master. This might be useful for rearranging commits, `rebase --autosquash`ing, or `rebase --exec`ing without introducing conflicts that arise from an updated master. In these situations, we can use `git merge-base` to identify the last common commit with master, and rebase off of that.
100
101To squash in `git commit --fixup` commits without rebasing over an updated master, we can do the following:
102
103```sh
104git rebase -i --autosquash "$(git merge-base master HEAD)"
105```
106
107To execute `make check` on every commit since last diverged from master, but without rebasing over an updated master, we can do the following:
108```sh
109git rebase -i --exec "make check" "$(git merge-base master HEAD)"
110```
111
112-----
113
114This synergizes well with [`ccache`](#cache-compilations-with-ccache) as objects resulting from unchanged code will most likely hit the cache and won't need to be recompiled.
115
116You can also set up [upstream refspecs](#reference-prs-easily-with-refspecs) to refer to pull requests easier in the above `git worktree` commands.
117
118Writing code
119------------
120
121### Format C/C++ diffs with `clang-format-diff.py`
122
123See [contrib/devtools/README.md](/contrib/devtools/README.md#clang-format-diff.py).
124
125### Format Python diffs with `yapf-diff.py`
126
127Usage is exactly the same as [`clang-format-diff.py`](#format-cc-diffs-with-clang-format-diffpy). You can get it [here](https://github.com/MarcoFalke/yapf-diff).
128
129Rebasing/Merging code
130-------------
131
132### More conflict context with `merge.conflictstyle diff3`
133
134For resolving merge/rebase conflicts, it can be useful to enable diff3 style using `git config merge.conflictstyle diff3`. Instead of
135
136```diff
137<<<
138yours
139===
140theirs
141>>>
142```
143
144  you will see
145
146```diff
147<<<
148yours
149|||
150original
151===
152theirs
153>>>
154```
155
156This may make it much clearer what caused the conflict. In this style, you can often just look at what changed between *original* and *theirs*, and mechanically apply that to *yours* (or the other way around).
157
158Reviewing code
159--------------
160
161### Reduce mental load with `git diff` options
162
163When reviewing patches which change indentation in C++ files, use `git diff -w` and `git show -w`. This makes the diff algorithm ignore whitespace changes. This feature is also available on github.com, by adding `?w=1` at the end of any URL which shows a diff.
164
165When reviewing patches that change symbol names in many places, use `git diff --word-diff`. This will instead of showing the patch as deleted/added *lines*, show deleted/added *words*.
166
167When reviewing patches that move code around, try using `git diff --patience commit~:old/file.cpp commit:new/file/name.cpp`, and ignoring everything except the moved body of code which should show up as neither `+` or `-` lines. In case it was not a pure move, this may even work when combined with the `-w` or `--word-diff` options described above. `--color-moved=dimmed-zebra` will also dim the coloring of moved hunks in the diff on compatible terminals.
168
169### Reference PRs easily with `refspec`s
170
171When looking at other's pull requests, it may make sense to add the following section to your `.git/config` file:
172
173```
174[remote "upstream-pull"]
175        fetch = +refs/pull/*/head:refs/remotes/upstream-pull/*
176        url = git@github.com:bitcoin/bitcoin.git
177```
178
179This will add an `upstream-pull` remote to your git repository, which can be fetched using `git fetch --all` or `git fetch upstream-pull`. It will download and store on disk quite a lot of data (all PRs, including merged and closed ones). Afterwards, you can use `upstream-pull/NUMBER/head` in arguments to `git show`, `git checkout` and anywhere a commit id would be acceptable to see the changes from pull request NUMBER.
180
181### Diff the diffs with `git range-diff`
182
183It is very common for contributors to rebase their pull requests, or make changes to commits (perhaps in response to review) that are not at the head of their branch. This poses a problem for reviewers as when the contributor force pushes, the reviewer is no longer sure that his previous reviews of commits are still valid (as the commit hashes can now be different even though the diff is semantically the same). [git range-diff](https://git-scm.com/docs/git-range-diff) (Git >= 2.19) can help solve this problem by diffing the diffs.
184
185For example, to identify the differences between your previously reviewed diffs P1-5, and the new diffs P1-2,N3-4 as illustrated below:
186```
187       P1--P2--P3--P4--P5   <-- previously-reviewed-head
188      /
189...--m   <-- master
190      \
191       P1--P2--N3--N4--N5   <-- new-head (with P3 slightly modified)
192```
193
194You can do:
195```sh
196git range-diff master previously-reviewed-head new-head
197```
198
199Note that `git range-diff` also work for rebases:
200
201```
202       P1--P2--P3--P4--P5   <-- previously-reviewed-head
203      /
204...--m--m1--m2--m3   <-- master
205                  \
206                   P1--P2--N3--N4  <-- new-head (with P3 modified, P4 & P5 squashed)
207
208PREV=P5 N=4 && git range-diff `git merge-base --all HEAD $PREV`...$PREV HEAD~$N...HEAD
209```
210
211Where `P5` is the commit you last reviewed and `4` is the number of commits in the new version.
212
213-----
214
215`git range-diff` also accepts normal `git diff` options, see [Reduce mental load with `git diff` options](#reduce-mental-load-with-git-diff-options) for useful `git diff` options.
216
217You can also set up [upstream refspecs](#reference-prs-easily-with-refspecs) to refer to pull requests easier in the above `git range-diff` commands.
218