File: developingmr.md.txt

package info (click to toggle)
petsc 3.22.5%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 516,740 kB
  • sloc: ansic: 814,333; cpp: 50,948; python: 37,416; f90: 17,187; javascript: 3,493; makefile: 3,198; sh: 1,502; xml: 619; objc: 445; java: 13; csh: 1
file content (197 lines) | stat: -rw-r--r-- 7,537 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
(ch_developingmr)=

# Developing a Merge Request

(sec_integration_branches)=

## Select the integration branch

**Integration branches** are permanent branches in a repository that developers can contribute to. PETSc has two integration branches: `release`
and `main`. **Feature branches** are temporary branches created by developers to add or change a feature. A new feature branch is the basis for each
merge request.

(sec_release_branch)=

### `release`

The `release` branch contains the latest PETSc release including bug-fixes.

Bug-fixes, along with most documentation fixes, should start from `release`.

```console
$ git fetch
$ git checkout -b yourname/fix-component-name origin/release
```

Bug-fix updates, about every month, (e.g. 3.17.1) are tagged on `release` (e.g. v3.17.1).

(sec_main_branch)=

### `main`

The `main` branch contains everything in the release branch as well as new features that have passed all testing
and will be in the next release (e.g. version 3.18). Users developing software based
on recently-added features in PETSc should follow `main`.

New features should start from `main`.

```console
$ git fetch
$ git checkout -b yourname/fix-component-name origin/main
```

(sec_developing_a_new_feature)=

## Start a new feature branch

- Determine the appropriate integration_branch to start from, `main` or `release` (for documentation and bug fixes only).

- Create and switch to a new feature branch:

  ```console
  $ git fetch
  $ git checkout -b <loginname>/<affected-package>-<short-description> origin/main  # or origin/release
  ```

  For example, Barry’s new feature branch on removing CPP in `snes/` will
  use

  ```console
  $ git checkout -b barry/snes-removecpp origin/main
  ```

  Use all lowercase and no additional underscores in the branch name.

## Develop your code

- Write code and tests.

- For any new features or API changes you introduced add information on them to `doc/changes/dev.rst`.

- Inspect changes and stage code using standard Git commands, e.g.

  ```console
  $ git status
  $ git add file1 file2
  $ git commit
  ```

- Commit code with good commit message, for example

  ```console
  $ git commit
  ```

  ```none
  ComponentName: one-line explanation of commit

  After a blank line, write a more detailed explanation of the commit. Many tools do not auto-wrap this part, so wrap paragraph text at a reasonable length. Commit messages are meant for other people to read, possibly months or years later, so describe the rationale for the change in a manner that will make sense later, and which will be provide helpful search terms.

  Use the imperative, e.g. "Fix bug", not "Fixed bug".

  If any interfaces have changed, the commit should fix occurrences in PETSc itself and the message should state its impact on users.

  We have defined several standard commit message tags you should use; this makes it easy to search for specific types of contributions. Multiple tags may be used in the same commit message.

  /spend 1h or 30m

  If other people contributed significantly to a commit, perhaps by reporting bugs or by writing an initial version of the patch, acknowledge them using tags at the end of the commit message.

  Reported-by: Helpful User <helpful@example.com>
  Based-on-patch-by: Original Idea <original@example.com>
  Thanks-to: Incremental Improver <improver@example.com>

  If work is done for a particular well defined funding source or project you should label the commit with one or more of the tags

  Funded-by: My funding source
  Project: My project name
  ```

- Push the feature branch to the remote repository as desired:

  ```console
  % git push -u origin barry/snes-removecpp
  ```

## Test your branch

- Include {doc}`tests </developers/testing>` which cover any changes to the source code.

- {any}`Run the full test suite <sec_runningtests>` on your machine.

  ```console
  $ make alltests TIMEOUT=600
  ```

- Run the source checkers on your machine.

  ```console
  $ make checkbadSource
  $ make clangformat
  $ make lint
  ```

(sec_clean_commit_history)=

## Maintain a clean commit history

If your contribution can be logically decomposed into 2 or more
separate contributions, submit them in sequence with different
branches and merge requests instead of all at once.

Often a branch's commit history does not present a logical series of changes.
Extra commits from bug-fixes or tiny improvements may accumulate. One commit may contain multiple orthogonal changes.
The order of changes may be incorrect. Branches without a clean commit history will often break `git bisect`.
Ideally, each commit in an MR will pass the PETSc CI testing, while presenting a small-as-possible set of very closely related changes.

Use different commits for:

- fixing formatting and spelling mistakes,
- fixing a bug,
- adding a new feature,
- adding another new feature.

Rewriting history can be done in [several ways](https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History); the easiest is often with the interactive `rebase` command, which allows one to combine ("squash"), rearrange, and edit commits.

It is better to clean up your commits regularly than to wait until you have a large number of them.

For example, if you have made three commits and the most recent two are fixes for the first, you could use

```console
$ git rebase -i HEAD~3
```

If the branch has already been pushed, the rewritten branch is not compatible with the remote copy of the branch. You must force push your changes with

```console
$ git push -f origin branch-name
```

to update the remote branch with your copy. This must be done with extreme care and only if you know someone else has not changed the remote copy of the branch,
otherwise you will lose those changes. Never do a `git pull` immediately after you rebase since that will merge the old branch (from GitLab) into your local one and create a mess [^block-ugly-pull-merge].

You can use `git log` to see the recent changes to your branch and help determine what commits should be rearranged, combined, or split.
You may also find it helpful to use an additional tool such as
[git-gui](https://git-scm.com/docs/git-gui/), [lazygit](https://github.com/jesseduffield/lazygit), or [various GUI tools](https://git-scm.com/downloads/guis).

(sec_rebasing)=

## Rebase your branch against the integration branch

You may also need to occasionally [rebase](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) your branch onto to the latest version of your {any}`integration branch <sec_integration_branches>` [^rebase-not-merge-upstream], if the integration branch has had relevant changes since you started working on your feature branch.

```console
$ git fetch origin                              # assume origin --> PETSc upstream
$ git checkout myname/component-feature
$ git branch myname/component-feature-backup-1  # optional
$ git rebase origin/main                        # or origin/release
```

Note that this type of rebasing is different than the `rebase -i` process for organizing your commits in a coherent manner.

```{rubric} Footnotes
```

[^rebase-not-merge-upstream]: Rebasing is generally preferable to [merging an upstream branch](http://yarchive.net/comp/linux/git_merges_from_upstream.html).

[^block-ugly-pull-merge]: You may wish to [make it impossible to perform these usually-undesired "non fast-forward" merges when pulling](https://git-scm.com/docs/git-config#Documentation/git-config.txt-pullff), with `git config --global pull.ff only`.