Skip to content

Commit 7bec5a7

Browse files
authored
Merge branch 'main' into risikovero
2 parents aebc77f + 05a3db4 commit 7bec5a7

3 files changed

Lines changed: 15 additions & 10 deletions

File tree

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
### 1️⃣ How to start
44

55
Fork this repository and clone your fork into your machine using:
6-
```
6+
```bash
77
git clone git@github.com:USERNAME/git-course-exercises.git
88
```
99

1010
enter to your project directory using:
11-
```
11+
```bash
1212
cd git-course-exercises
1313
```
1414

@@ -17,7 +17,7 @@ cd git-course-exercises
1717
### 2️⃣ How to make a branch
1818

1919
To create a new `branch` from the main repository and work on a specific exercise (ex. `file.cpp`) you can use the following commands:
20-
```
20+
```bash
2121
git checkout main
2222

2323
git checkout -b new-branch-name
@@ -28,7 +28,7 @@ git checkout -b new-branch-name
2828
### 3️⃣ How to make a commit
2929

3030
From this step you can edit your `file.cpp` and make some commits using:
31-
```
31+
```bash
3232
git add exercises/file.cpp
3333

3434
git commit -m 'feat: description'
@@ -40,7 +40,7 @@ Use the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) w
4040
### 4️⃣ How to make a PR
4141

4242
Push the commits into GitHub using:
43-
```
43+
```bash
4444
git push -u origin new-branch-name
4545
```
4646

@@ -51,3 +51,11 @@ If you want to work on another `file.cpp`, go to step 2️⃣.
5151
---
5252

5353
Use git wisely.
54+
55+
### Clean code
56+
57+
Check [this article](https://testdriven.io/blog/clean-code-python/) to understand how to write "clean code" in python.
58+
59+
### Contributing
60+
61+
Feel free to improve this README with any other detail, if you do it, I'll be grateful.

compile.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22
for FILE in exercises/*.cpp; do
33
printf "Compiling: $FILE ->\n"
4-
g++ $FILE -std=c++11 -c
5-
done
4+
g++ $FILE -std=c++11 -c -Wall
5+
done

exercises/pipeline.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)