Skip to content

Commit 299122c

Browse files
committed
Fix images
1 parent 4dae1b5 commit 299122c

7 files changed

Lines changed: 20 additions & 17 deletions

File tree

File renamed without changes.

content/blog/continuous-delivery/index.en.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
date: 2023-09-02
32
title: "Continuous Delivery"
3+
authors:
4+
- jnonino
45
description: >
56
Here you can find information about Continuous Delivery, what is it, which benefits can you expect from it, the challenges you might face trying to adopted and so on.
6-
author: Julian Nonino ([LinkedIn](https://www.linkedin.com/in/jnonino/))
7-
tags: ["CD", "Continuous Delivery", "Continuous Deployment"]
8-
# images:
9-
# - /images/banners/content/blog/cd/continuous-delivery.png
7+
date: 2023-09-02
8+
tags: ["Blog", "Continuous Delivery", "Continuous Deployment", "CD"]
109
---
1110

1211
Continuous Delivery (CD) is deeply rooted in the first principle of the Agile Manifesto posted in 2001[^1]:
@@ -134,3 +133,6 @@ It's worth noting that when we discuss CD, it inherently includes **Continuous D
134133
[^10]: Fitz, Timothy. [Continuous Deployment](http://timothyfitz.com/2009/02/08/continuous-deployment/), 2009.
135134

136135
[^11]: Pulkkinen, Ville. Continuous Deployment of Software. Proceedings of Cloud-Based Software Engineering, pp.46-52, 2013.
136+
137+
138+
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBbKWwWQESzQtuMvqa/V0GFc4I5fo/4xYPinLdLeCot/
File renamed without changes.
File renamed without changes.

content/blog/continuous-integration/index.en.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
date: 2023-08-19
32
title: "Continuous Integration"
3+
authors:
4+
- jnonino
45
description: >
56
What is Continuous Integration? Which benefits it provides? In this article you can find answers to those questions and many more.
6-
author: Julian Nonino ([LinkedIn](https://www.linkedin.com/in/jnonino/))
7-
tags: ["CI", "Continuous Integration"]
8-
# images:
9-
# - /images/banners/content/blog/ci/continuous-integration.png
7+
date: 2023-08-19
8+
tags: ["Blog", "Continuous Integration", "CI"]
109
---
1110

1211
One of the most pivotal challenges in the realm of software development is effectively integrating changes [^1]. In a small-scale project steered by a single developer, this challenge might appear to be trivial. However, as the magnitude of the project escalates and more individuals join the development fold, the significance of seamless integration becomes paramount.
@@ -58,7 +57,7 @@ A basic Continuous Integration (CI) pipeline initiates when a new code change is
5857
{{< figure
5958
src="ci_elements.png"
6059
alt="Basic elements of CI"
61-
caption="Figure 1: Basic elements of CI (Duvall[^5])"
60+
caption="Figure 1: Basic elements of CI"
6261
>}}
6362

6463
The system's primary component consists of the **developers**. After making code modifications, they run tests locally and compile the code to ensure that they haven't introduced new errors.

content/blog/git-revert-local.en.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
---
2-
date: 2023-01-18
32
title: "Revert a local change in Git"
3+
authors:
4+
- jnonino
45
description: >
56
How to discard changes in Git before pushing them.
6-
author: Julian Nonino ([LinkedIn](https://www.linkedin.com/in/jnonino/))
7-
tags: ["VCS", "Version Control", "GIT", "Revert"]
7+
date: 2023-01-18
8+
tags: ["Blog","Version Control", "VCS", "Git", "Revert"]
89
---
910

1011
When we have created a commit locally but have not published it to the remote yet, we can use `git reset` to undo the commit and, if we wish, discard the changes.

content/blog/git-revert-pushed.en.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
---
2-
date: 2023-01-18
32
title: "Revert a pushed change in Git"
3+
authors:
4+
- jnonino
45
description: >
56
Have you ever pushed a change in Git and it was wrong? Here you'll learn how to revert the change, even if the problem was with a merge commit.
6-
author: Julian Nonino ([LinkedIn](https://www.linkedin.com/in/jnonino/))
7-
tags: ["VCS", "Version Control", "GIT", "Revert"]
7+
date: 2023-01-18
8+
tags: ["Blog","Version Control", "VCS", "Git", "Revert"]
89
---
910

1011
When we realized that the last commit was a mistake but we already published it, the command to use is `git revert <COMMIT_HASH>`.

0 commit comments

Comments
 (0)