Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion abap-code-review/ABAPCodeReview.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ License   [Creative Commons](https://github.com/SAP/styleguides/blob/m

Code review is a measure for assuring software quality by letting developers read the code of others. While the primary goal is to increase quality by finding defects, it also fosters learning and shared code ownership.

[Continuous integration / continuous delivery](https://help.sap.com/viewer/Continuous-Integration-and-Delivery-Introduction-Guide/5ba483a2c97b4ad5ab0148f4a6c5a9ee.html) (CI/CD) is commonly seen as a prerequisite to faster delivery of cloud-based products. This comprises the ability to review, test, and, if required, veto changes before they affect every other developer working on the same repository. This capability to validate a change in _isolation_ before integrating it is also known as [proposed commits](https://trunkbaseddevelopment.com/game-changers/#google-s-internal-devops-2006-onwards) or [pending head](https://martinfowler.com/bliki/PendingHead.html). For instance, most git platforms have implemented this concept as depicted below.
[Continuous integration / continuous delivery](https://help.sap.com/docs/CICD_OVERVIEW/ee5a61247061455ab232c19179fe4c3b/7fc38a80cda446ef856c01f748dbede8.html?locale=en-US&version=LATEST) (CI/CD) is commonly seen as a prerequisite to faster delivery of cloud-based products. This comprises the ability to review, test, and, if required, veto changes before they affect every other developer working on the same repository. This capability to validate a change in _isolation_ before integrating it is also known as [proposed commits](https://trunkbaseddevelopment.com/game-changers/#google-s-internal-devops-2006-onwards) or [pending head](https://martinfowler.com/bliki/PendingHead.html). For instance, most git platforms have implemented this concept as depicted below.

```mermaid
%%{ init: { 'flowchart': { 'curve': 'basis' } } }%%
Expand Down
Loading