Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
4645df1
Lab 1 Task 1
fabulargirl Jun 3, 2025
f803faa
Lab 1 Task 2
fabulargirl Jun 3, 2025
fafe234
Merge pull request #1 from fabulargirl/labs/lab-1
fabulargirl Jun 3, 2025
3670f0c
Merge branch 'inno-devops-labs:master' into master
fabulargirl Jun 12, 2025
2ac997b
Task 1 and Task 2
fabulargirl Jun 12, 2025
2e855e5
Commit A
fabulargirl Jun 12, 2025
08ce6fc
Commit B
fabulargirl Jun 12, 2025
7ed8cab
Commit C
fabulargirl Jun 12, 2025
b8d149f
Task 3 start
fabulargirl Jun 12, 2025
9c73b74
Task 3 finish
fabulargirl Jun 12, 2025
ab0aba3
lab 2 finish
fabulargirl Jun 12, 2025
4d4a4f8
Merge pull request #2 from fabulargirl/labs/lab2
fabulargirl Jun 12, 2025
7a5aee8
Merge branch 'inno-devops-labs:master' into master
fabulargirl Jun 18, 2025
b8bf9d8
Create FilenamesCheck.yml
fabulargirl Jun 18, 2025
aade6b7
lab 3 Task 1 - action test
fabulargirl Jun 18, 2025
81919ab
Update FilenamesCheck.yml
fabulargirl Jun 19, 2025
88ed365
lab 3 Task 1 - action test 2
fabulargirl Jun 19, 2025
d79e0c6
lab 3 Task 2 Gather System Information
fabulargirl Jun 19, 2025
0752005
Update FilenamesCheck.yml
fabulargirl Jun 19, 2025
7e96f9c
Update FilenamesCheck.yml
fabulargirl Jun 19, 2025
18f1281
Create blank.yml
fabulargirl Jun 19, 2025
f325d3e
lab 3 Task 2 Gather System Information
fabulargirl Jun 19, 2025
41a1b6f
Rename blank.yml to SystemInformation.yml
fabulargirl Jun 19, 2025
f55dd2c
Update SystemInformation.yml
fabulargirl Jun 19, 2025
357262c
lab 3 Task 2
fabulargirl Jun 19, 2025
62e14a8
lab 3 Task 2 Finish
fabulargirl Jun 19, 2025
de302fa
lab 3 Finish
fabulargirl Jun 19, 2025
5add394
Merge branch 'inno-devops-labs:master' into master
fabulargirl Jun 26, 2025
ac0e6f1
lab 4 Finish
fabulargirl Jun 26, 2025
b93f1e8
Merge pull request #3 from fabulargirl/labs/lab3
fabulargirl Jun 26, 2025
6f4af84
lab 4 fix
fabulargirl Jun 26, 2025
8e123b7
lab 4 fix2
fabulargirl Jun 26, 2025
ad8d52d
Merge pull request #4 from fabulargirl/labs/lab4
fabulargirl Jun 26, 2025
4eb3934
Merge branch 'inno-devops-labs:master' into master
fabulargirl Jul 3, 2025
f82f04b
lab 5
fabulargirl Jul 5, 2025
52cd732
Merge pull request #5 from fabulargirl/labs/lab5
fabulargirl Jul 5, 2025
8b9fb82
lab 6
fabulargirl Jul 5, 2025
d41654f
Merge branch 'inno-devops-labs:master' into master
fabulargirl Jul 6, 2025
068068b
Merge branch 'inno-devops-labs:master' into master
fabulargirl Jul 12, 2025
d84cc3f
Merge pull request #6 from fabulargirl/labs/lab6
fabulargirl Jul 12, 2025
58540bf
lab 7
fabulargirl Jul 12, 2025
573d831
Merge pull request #7 from fabulargirl/labs/lab7
fabulargirl Jul 12, 2025
bb9fad0
lab 8
fabulargirl Jul 12, 2025
0cc49af
Merge pull request #8 from fabulargirl/labs/lab8
fabulargirl Jul 12, 2025
be38129
Merge branch 'inno-devops-labs:master' into master
fabulargirl Jul 17, 2025
d62a8e7
Add files via upload
fabulargirl Jul 17, 2025
bae3d9d
Add files via upload
fabulargirl Jul 17, 2025
555d14e
Merge pull request #9 from fabulargirl/labs/lab9
fabulargirl Jul 17, 2025
3674aec
Merge branch 'inno-devops-labs:master' into master
fabulargirl Jul 19, 2025
d65a9fe
Add files via upload
fabulargirl Jul 19, 2025
77ffda6
Add files via upload
fabulargirl Jul 19, 2025
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
29 changes: 29 additions & 0 deletions .github/workflows/FilenamesCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check Submission Filenames

on:
push:
paths:
- 'Submissions/**'
pull_request:
paths:
- 'Submissions/**'
workflow_dispatch:

jobs:
check-submissions:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Check filenames in Submissions directory
run: |
invalid_files=$(find Submissions/ -maxdepth 1 -type f ! -name '*submission*')

if [ -n "$invalid_files" ]; then
echo "❌ Found invalid files:"
echo "$invalid_files"
exit 1
else
echo "✅ All files are correctly named."
fi
35 changes: 35 additions & 0 deletions .github/workflows/SystemInformation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Gather System Information

on:
push:
workflow_dispatch:

jobs:
system-info:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Display system information
run: |
echo "🖥️ System Information:"
echo "---- uname -a ----"
uname -a

echo ""
echo "---- CPU Info ----"
lscpu

echo ""
echo "---- Memory Info ----"
free -h

echo ""
echo "---- Disk Info ----"
df -h

echo ""
echo "---- Environment Variables ----"
env | sort
Binary file added Submissions/Images/img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img1_lab7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img1_lab8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img2_lab7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img2_lab8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img3_lab7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img3_lab8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img4_lab7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img4_lab8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img5_lab7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img5_lab8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img6_lab7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img6_lab8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img7_lab7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img7_lab8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_1_lab10..png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_1_lab9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_2_lab10..png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_2_lab9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_3_lab10..png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_4_lab10..png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_Lab6(16).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_Ubuntu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_Ubuntu2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Submissions/Images/img_Ubuntu3.png
Binary file added Submissions/Images/img_Ubuntu4.png
Binary file added Submissions/Images/img_Ubuntu5.png
Binary file added Submissions/Images/img_Ubuntu6.png
Binary file added Submissions/Images/img_Ubuntu7.png
Binary file added Submissions/Images/img_Ubuntu8.png
Binary file added Submissions/Images/img_lab10.png
Binary file added Submissions/Images/img_lab6(1).png
Binary file added Submissions/Images/img_lab6(10).png
Binary file added Submissions/Images/img_lab6(11).png
Binary file added Submissions/Images/img_lab6(12).png
Binary file added Submissions/Images/img_lab6(13).png
Binary file added Submissions/Images/img_lab6(14).png
Binary file added Submissions/Images/img_lab6(15).png
Binary file added Submissions/Images/img_lab6(17).png
Binary file added Submissions/Images/img_lab6(18).png
Binary file added Submissions/Images/img_lab6(2).png
Binary file added Submissions/Images/img_lab6(3).png
Binary file added Submissions/Images/img_lab6(4).png
Binary file added Submissions/Images/img_lab6(5).png
Binary file added Submissions/Images/img_lab6(6).png
Binary file added Submissions/Images/img_lab6(7).png
Binary file added Submissions/Images/img_lab6(8).png
Binary file added Submissions/Images/img_lab6(9).png
Binary file added Submissions/Images/img_lab6.png
Binary file added Submissions/Images/img_lab7.png
Binary file added Submissions/Images/img_lab8.png
Binary file added Submissions/Images/img_lab9.png
49 changes: 49 additions & 0 deletions Submissions/submission1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Task 1: SSH Commit Signature Verification

**Brief summary explaining the benefits of signing commits.**

Commits can be signed using GPG, SSH, or S/MIME. The main goal for signing commits is verification of authenticity. This ensures that commits were actually made by the claimed author, preventing impersonation.

Also signing commits helps with:
- Tamper Protection – Confirms that the commit content hasn’t been altered after signing.
- Trust & Integrity – Helps teams verify the legitimacy of changes, especially in open-source or collaborative projects.
- Compliance – Meets security requirements for organizations that mandate signed commits.

# Task 2: Merge Strategies in Git

- **Standard Merge**: Combines two branches by creating a merge commit.

This retains the full development history and shows exactly when the merge occurred.

History can become “noisy” with a large number of merges.

Diagram:
```
A---B---C---------G (main)
\ /
D---E---F (feature)
```

- **Squash and Merge**: Combines all commits from a feature branch into a single commit before merging.

All commits from a branch are merged into a single commit that is applied to the main branch.

It helps to make a clean history - one commit per feature.

But the detailed history of changes within the branch is lost.

Diagram:
```
A---B---C---G (main)
```

- **Rebase and Merge**: Reapplies commits from a feature branch onto the base branch.

Consistently moves commits from the feature branch to the main branch on top of the most recent version of the main branch.

This method creates a linear, clean history without merge commits. Leads to difficulties with conflicting rebases. Not recommended for public branches, because the history is changed.

Diagram:
```
A---B---C---D'---E'---F' (main)
```
25 changes: 25 additions & 0 deletions Submissions/submission10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## Task 1 Results

1. Connected peers
![img.png](Images/img_lab10.png)

- IPFS Node Peer Count: 8
- IPFS Node Bandwidth: 9
- Test File CID: QmUFJmQRosK4Amzcjwbip8kV3gkJ8jqCURjCNxuv3bWYS1
- Public Gateway URL: https://ipfs.io/ipfs/QmUFJmQRosK4Amzcjwbip8kV3gkJ8jqCURjCNxuv3bWYS1

Local:
![img_1.png](Images/img_1_lab10..png)

Public:
![img_2.png](Images/img_2_lab10..png)

Peer statictics:
![img_3.png](Images/img_3_lab10..png)

## Task 2 Results
- 4EVERLAND Project URL: https://sum25-intro-labs-4uvjaiu9-fabulargirl.4everland.app/
- GitHub Repository (if you used your own app): [github.com/your/repo]
- IPFS CID from 4EVERLAND: bafybeihzarmfcsys5au2yx3mhemrowy2x4xg4pckz3s7rxbipa3etpsjzm

![img_4.png](Images/img_4_lab10..png)
147 changes: 147 additions & 0 deletions Submissions/submission2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
# Task 1

1. `git cat-file -p <blob_hash>`

The command `echo 'test content' | git hash-object -w --stdin` created a blob file. The test information was written to the file.

The command `git cat-file -p d670460b4b4aece5915caf5c68d12f560a9fe3e4` retrieves information from the blob file by hash.

2. `git cat-file -p <tree_hash>`

The command `git cat-file -p master^{tree}` pulled all the information out of the `master` tree.

output:
```commandline
100644 blob af7fda8ea32b60578a1103ce061a50d7f6f09a35 README.md
040000 tree 5a4a32162f6fbcbdad74ce3f2f6b37f28dc73568 Submissions
100644 blob 7a94f7af59b8968be392288ea03179a24ffc9d9e lab1.md
100644 blob 77e299c4cdb01bc31607bef4e2036b56c3368515 lab2.md
```

3. `git cat-file -p <commit_hash>`

The command `git log` found out the commit hash.

The command `git cat-file -p a107866e91af12c22ef78d4c7ad53ae39135ef43` got the commit info.

```commandline
tree d9f1fa38312ae16ca4276713e2d276a46d6993fd
author Dmitriy Creed <creed@soramitsu.co.jp> 1748540938 +0300
committer Dmitriy Creed <creed@soramitsu.co.jp> 1748540938 +0300

lab1 Intro

Signed-off-by: Dmitriy Creed <creed@soramitsu.co.jp>
```

# Task 2
1. Creating and switching to a new branch

```commandline
git checkout -b git-reset-practice
Switched to a new branch 'git-reset-practice'
```

2. Creating a new file and writing information to it

```commandline
echo "First commit" > file.txt
git add file.txt
git commit -m "First commit"

echo "Second commit" >> file.txt
git add file.txt
git commit -m "Second commit"

echo "Third commit" >> file.txt
git add file.txt
git commit -m "Third commit"
[git-reset-practice 228dbd9] First commit
2 files changed, 1 insertion(+)
create mode 100644 Submissions/submission2.md
create mode 100644 file.txt
[git-reset-practice 959a308] Second commit
1 file changed, 1 insertion(+)
[git-reset-practice df350e4] Third commit
1 file changed, 1 insertion(+)
```

3. `git reset --soft HEAD~1`

The HEAD pointer has moved one commit back (the last commit is now a Second commit).

The changes from the "Third commit" remain in the index (staging area).

4. `git reset --hard HEAD~1`

The HEAD pointer has moved back one commit (now only First commit remains).

All changes from Second commit and Third commit are removed from the index and working directory.

5. `git reflog`

The command `git reflog` determines the hash of the desired commit.

The command `git reset --hard df350e4` returns to the desired commit.

## Task 3

1. Creating commits

```commandline
echo "Commit A" > history.txt
git add history.txt
git commit -m "Commit A"

echo "Commit B" >> history.txt
git add history.txt
git commit -m "Commit B"

echo "Commit C" >> history.txt
git add history.txt
git commit -m "Commit C"
```

Three commits were created and the history was written to a file `history.txt`

2. Simple commit graph

The command `git log --oneline --graph --all` был создан граф

![img.png](Images/img.png)

3. Optional Branching

```commandline
git checkout -b side-branch
echo "Branch commit" >> history.txt
git add history.txt
git commit -m "Side branch commit"
git checkout main
git log --oneline --graph --all
```

The following graph was obtained:

![img_1.png](Images/img_1.png)

This visualization clearly illustrates how multiple contributors can work on separate branches simultaneously, making independent changes without interfering with each other. It also highlights how branches eventually merge, demonstrating the flow of collaborative development and integration.

## Task 4

The commands:

```commandline
git tag v1.0.0
git push origin v1.0.0
```

The **v1.0.0.0** tag was created for the commit and sent to the remote repository.

Commit hash: ` 9c73b74 (HEAD -> labs/lab2, tag: v1.0.0, origin/labs/lab2) Task 3 finish`

Tagging in software development provides clear versioning, enabling reliable releases, automated CI/CD workflows, and easy reference for release notes and debugging.

## Task 5: GitHub Social Interactions

Social features on GitHub—like issues, pull requests, comments, and mentions—enable clear communication, collaboration, and feedback among team members or contributors. They help coordinate work, track progress, and build community around open source projects.
Loading