From befb6bb17bc1bb39f7d7aa42697b6676f2d9113c Mon Sep 17 00:00:00 2001
From: MovsisianRG <rafaelmvs2005@gmail.com>
Date: Wed, 10 Apr 2024 12:58:45 +0000
Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20'N?=
 =?UTF-8?q?ovy=5Ftextovy=5Fdokument.txt'?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 Novy_textovy_dokument.txt | 599 --------------------------------------
 1 file changed, 599 deletions(-)
 delete mode 100644 Novy_textovy_dokument.txt

diff --git a/Novy_textovy_dokument.txt b/Novy_textovy_dokument.txt
deleted file mode 100644
index ec3d8e0..0000000
--- a/Novy_textovy_dokument.txt
+++ /dev/null
@@ -1,599 +0,0 @@
-����� �� ������������ ������ � 2 "������� �������� ������ Git"
-
-��������: �������� �.�.
-������:   �-03-23
-��������: 
-
-����������: ������ ����������� �� Windows.
-
-1. ������ �� ������� ����� ������� lab02 � �������� � ��� Git Bash, �����������:
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02
-$
-
-
-2. ���������� ����� � ������� �������� ����� �������� "ls" --- �����:
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02
-$ ls
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02
-$
-
-
-3. ������ �������� ����� � ����, ������ ������� "project",
-������ ������� "cd" � ��������:
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02
-$ mkdir alice
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02
-$ mkdir bob
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02
-$ cd bob
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02/bob
-$ cd ..
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02
-$ cd alice
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02/alice
-$ mkdir project
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02/alice
-$ ls
-project
-
-u113-13@PROG-29 MINGW32 ~/Desktop/lab02/alice
-$ cd project
-
-4. ��������������� �����������, ������� ���� ������, ������������� ��� ����� �� ����������(������ ����� ��������) ������� �������
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (master)
-$ git init
-Reinitialized existing Git repository in C:/Users/u113-13/Desktop/lab02/alice/project/.git/
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (master)
-$ git branch -m main
-error: refname refs/heads/master not found
-fatal: Branch rename failed
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (master)
-$ git config user.name 'Alice (MovsisyanRG)'
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (master)
-$ git config user.email 'MovsisianRG@mpei.ru'
-
-5. ������ ������ � ����������� �����
-6. ���������� ��������� ������� ����� 
-$ git status
-On branch master (��� ������� ����� master)
-
-No commits yet (�� ������� �������)
-
-Untracked files: (������������� �����)
-  (use "git add <file>..." to include in what will be committed) 
-
-        main.cpp (���)
-        project.cbp (������)
-
-nothing added to commit but untracked files present (use "git add" to track)
-
-����� main.cpp ��� Git
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (master)
-$ git add main.cpp
-
-��� ��� ���������� ��������� ������� �����
-
-$ git status
-On branch master
-
-No commits yet
-
-Changes to be committed:
-  (use "git rm --cached <file>..." to unstage)
-
-        new file:   main.cpp (��������� ����� ������������� ����)
-
-Untracked files:
-  (use "git add <file>..." to include in what will be committed)
-
-        project.cbp
-
-�������� ������ � ������ main.cpp
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (master)
-$ git commit -m 'code: ��������� ���������'
-[master (root-commit) 5fdca83] code: ��������� ���������
- 1 file changed, 9 insertions(+)
- create mode 100644 main.cpp
-
-7. ������� ���� projcet.cbp � ������ � ������ ������ � ���
-
-$ git add project.cbp
-warning: LF will be replaced by CRLF in project.cbp.
-The file will have its original line endings in your working directory
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (master)
-$ git commit -m 'build: add project file'
-[master 00a65a5] build: add project file
- 1 file changed, 40 insertions(+)
- create mode 100644 project.cbp
-
-8. ������������ ��� ����� �� main (��� ��� �� ����� �� ����������)
-$ git branch -m main
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-
-9. ������� ���� ������� main() �� ���� ���� �����, ��������� ��������� �����������
-$ git status
-On branch main
-Changes not staged for commit:
-  (use "git add <file>..." to update what will be committed)
-  (use "git checkout -- <file>..." to discard changes in working directory)
-
-        modified:   main.cpp
-
-Untracked files:
-  (use "git add <file>..." to include in what will be committed)
-
-        bin/
-        obj/
-
-no changes added to commit (use "git add" and/or "git commit -a")
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-
-����� ���������� �����������, ���� �������� modified:, � ��� ���������� �����, ��� ���� ��� ��������� ������� untracked file:
-
-������� ����� � �������� ����� a � b, � ��� �� ���������� 3 ������� ����������� ���������
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git add main.cpp
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git commit -m "code: ��������� ��������� � ������ �����"
-[main 79d7c57] code: ��������� ��������� � ������ �����
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git add -u
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git commit -m "code: ��������� ����� a � b"
-[main dfdb00c] code: ��������� ����� a � b
- 1 file changed, 1 insertion(+)
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git commit -a -m "code: ��������� �������� a � b"
-[main 84a34f0] code: ��������� �������� a � b
- 1 file changed, 1 insertion(+)
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-
-10. ������ ����� ���� .gitignore, ������� ��� ��� Git � ������ ������
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git add .gitignore
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git commit -m "git: ������ ���� ��� ������ ���������"
-[main ea99681] git: ������ ���� ��� ������ ���������
- 1 file changed, 3 insertions(+)
- create mode 100644 .gitignore
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-
-11.����� ������� ������� �� ���� build, ����� �������, ������������� project.cbp.
-$ git log --grep "build"
-commit 00a65a558b74d187bf374ea9fb4cd040de92c1c1
-Author: Alice (MovsisyanRG) <MovsisianRG@mpei.ru>
-Date:   Wed Mar 27 14:28:14 2024 +0300
-
-    build: add project file
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git log -- project.cbp
-commit 00a65a558b74d187bf374ea9fb4cd040de92c1c1
-Author: Alice (MovsisyanRG) <MovsisianRG@mpei.ru>
-Date:   Wed Mar 27 14:28:14 2024 +0300
-
-    build: add project file
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-
-12. ��������� ������������� ������
-$ git show HEAD~1
-commit 84a34f007082206aa093e8e76408d0c4ed8303df
-Author: Alice (MovsisyanRG) <MovsisianRG@mpei.ru>
-Date:   Wed Mar 27 14:38:36 2024 +0300
-
-    code: aiaaaeaia ?aciinou a e b
-
-diff --git a/main.cpp b/main.cpp
-index 9bfc0db..1c9caca 100644
---- a/main.cpp
-+++ b/main.cpp
-@@ -8,5 +8,6 @@ int main()
-     int a, b;
-     cin >> a >> b;
-     cout << "A + B = " << a + b << '\n'
-+        << "A - B = " << a - b << '\n';
-
- }
-
-13. ���������� ��������� ����� ����� ������ �������� � ��������, ����������� ����� ��������.
-$ git diff HEAD~2 HEAD
-diff --git a/.gitignore b/.gitignore
-new file mode 100644
-index 0000000..d85abef
---- /dev/null
-+++ b/.gitignore
-@@ -0,0 +1,3 @@
-+/bin
-+/obj
-+/*.layout
-diff --git a/main.cpp b/main.cpp
-index 9bfc0db..1c9caca 100644
---- a/main.cpp
-+++ b/main.cpp
-@@ -8,5 +8,6 @@ int main()
-     int a, b;
-     cin >> a >> b;
-     cout << "A + B = " << a + b << '\n'
-+        << "A - B = " << a - b << '\n';
-
- }
-
-14. ���������� ������������, ������� ������, ������� ������ � main � ������� ������ ��������
-$ git commit -m "code: ��������� ������������ a � b"
-On branch main
-Changes not staged for commit:
-        modified:   main.cpp
-        modified:   project.cbp
-
-no changes added to commit
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git reset --hard HEAD~1
-HEAD is now at 84a34f0 code: ��������� �������� a � b
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git checkout HEAD -- main.cpp
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-
-15. ������ ���� ������, �������� �����, ������� � ������ � ����� �� ������
-$ ssh-keygen
-Generating public/private rsa key pair.
-Enter file in which to save the key (/c/Users/u113-13/.ssh/id_rsa):
-Created directory '/c/Users/u113-13/.ssh'.
-Enter passphrase (empty for no passphrase):
-Enter same passphrase again:
-Your identification has been saved in /c/Users/u113-13/.ssh/id_rsa.
-Your public key has been saved in /c/Users/u113-13/.ssh/id_rsa.pub.
-The key fingerprint is:
-SHA256:RnKZThnNyOJGC+i68NI+ElEHIsJitMgcBBdX1lB8//g u113-13@PROG-23
-The key's randomart image is:
-+---[RSA 2048]----+
-|X+++..+*o+       |
-|B==.o.o ==+      |
-|+* . +.oB. .     |
-|. .   +*    .    |
-| o   .  S    o   |
-|+      .    . .  |
-|.=           .   |
-|+ +           E  |
-| +..             |
-+----[SHA256]-----+
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ eval $(ssh-agent -s)
-Agent pid 3536
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ ssh-add
-Identity added: /c/Users/u113-13/.ssh/id_rsa (u113-13@PROG-23)
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ cat ~/.ssh/id_ed25519.pub
-cat: /c/Users/u113-13/.ssh/id_ed25519.pub: No such file or directory
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ ^C
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ $ cat ~/.ssh/id_ed25519.pub
-bash: $: command not found
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ $ cat ~/.ssh/id_rsa.pub
-bash: $: command not found
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$  cat ~/.ssh/id_rsa.pub
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDPUxukN6TSyALFkTjGcx+mKcNcMYVCb7kxQ4JvxalE/htjBRwn093fhN5S9jYPmbovF7X7N4oOxfl2Z1eIUtfUq26b6nENPQG8RlA6Z6J6b8bUjlZHzsTYfGTm+AU6K44MtrqWNLCq9hrHd9Ut3Q6tdIB8JHwNlSLwes0YqhwaF4z4sQoX9lHU3P1ZhwvXWrImVoWPT7n4jQJWJ+6+K4cUH6klkVPWyZqKMJkMnzSM+eVWQyiMCnxIIDq/FR/2A5UsmOO6anAYt0oo51PQrUyqsJ4hQf9wsic2FuuAr4suTjLj2F6Pb7XyoS03Y5TLlhXYJ5hdEJoiBriXbeOtR5RL u113-13@PROG-23
-
-16. ������ ����������� � ������������ ������ �� gitbash
-$ git remote add origin git@uit.mpei.ru:MovsisianRG/cs-lab02.git
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/alice/project (main)
-$ git push -u origin main
-The authenticity of host 'uit.mpei.ru (10.1.6.13)' can't be established.
-ECDSA key fingerprint is SHA256:+MRh1ssS2MjYzxp1zO+xbhzkFjtvbXFwcP0Nuzb7bD8.
-Are you sure you want to continue connecting (yes/no)? yes
-Warning: Permanently added 'uit.mpei.ru,10.1.6.13' (ECDSA) to the list of known hosts.
-Enumerating objects: 15, done.
-Counting objects: 100% (15/15), done.
-Compressing objects: 100% (14/14), done.
-Writing objects: 100% (15/15), 1.92 KiB | 246.00 KiB/s, done.
-Total 15 (delta 3), reused 0 (delta 0)
-remote: . Processing 1 references
-remote: Processed 1 references in total
-To uit.mpei.ru:MovsisianRG/cs-lab02.git
- * [new branch]      main -> main
-Branch 'main' set up to track remote branch 'main' from 'origin'.
-
-17. ���������� ������ � �������� Git
-$ git clone git@uit.mpei.ru:MovsisianRG/cs-lab02.git project
-Cloning into 'project'...
-remote: Enumerating objects: 15, done.
-remote: Counting objects: 100% (15/15), done.
-remote: Compressing objects: 100% (14/14), done.
-remote: Total 15 (delta 3), reused 0 (delta 0), pack-reused 0
-Receiving objects: 100% (15/15), 1.92 KiB | 246.00 KiB/s, done.
-Resolving deltas: 100% (3/3), done.
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/bob
-$ cd project
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/bob/project (main)
-
-$ git config user.name 'Alice (MovsisyanRG)'
-
-u113-13@PROG-23 MINGW32 ~/Desktop/lab02/bob/project (main)
-$ git config user.email 'MovsisianRG@mpei.ru'
-
-18. ��� ������ ���� ������� � ��������� ������ ������������ ����� � ������ ������, �������� �������� ���������, ������� ���� �����, ��������� ����� main � ��������� ������, ��� ����� ������ ������� � ��������� ������ �������, �������� ������, ��������� ��� �� ������ � ������� ����� ������ ��� ������ ����.
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git commit -a -m "code: oiii?aiea a e b"
-[main 434d199] code: oiii?aiea a e b
- 1 file changed, 2 insertions(+), 1 deletion(-)
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git push
-Enumerating objects: 5, done.
-Counting objects: 100% (5/5), done.
-Compressing objects: 100% (3/3), done.
-Writing objects: 100% (3/3), 377 bytes | 62.00 KiB/s, done.
-Total 3 (delta 1), reused 0 (delta 0)
-remote: . Processing 1 references
-remote: Processed 1 references in total
-To uit.mpei.ru:MovsisianRG/cs-lab02.git
-   84a34f0..434d199  main -> main
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git fetch
-remote: Enumerating objects: 5, done.
-remote: Counting objects: 100% (5/5), done.
-remote: Compressing objects: 100% (3/3), done.
-remote: Total 3 (delta 1), reused 0 (delta 0), pack-reused 0
-Unpacking objects: 100% (3/3), done.
-From uit.mpei.ru:MovsisianRG/cs-lab02
-   84a34f0..434d199  main       -> origin/main
-
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git log --oneline --decorate --all --graph
-* 434d199 (origin/main) code: ��������� a � b
-| * 9254bb9 (double) code: ������ ��� �� ����
-| * 16d3cd7 code: ������� �������
-|/
-* 84a34f0 (HEAD -> main) code: ��������� �������� a � b
-* dfdb00c code: ��������� ����� a � b
-* 79d7c57 code: ��������� ��������� � ������ �����
-* 00a65a5 build: add project file
-* 5fdca83 code: ��������� ���������
-
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git pull --ff-only
-
-Updating 84a34f0..434d199
-Fast-forward
- main.cpp | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git commit -a -m "code: ������� a � b"
-[main 8168f86] code: ������� a � b
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git push
-Enumerating objects: 5, done.
-Counting objects: 100% (5/5), done.
-Compressing objects: 100% (3/3), done.
-Writing objects: 100% (3/3), 364 bytes | 91.00 KiB/s, done.
-Total 3 (delta 1), reused 0 (delta 0)
-remote: . Processing 1 references
-remote: Processed 1 references in total
-To uit.mpei.ru:MovsisianRG/cs-lab02.git
-   434d199..8168f86  main -> main
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git fetch
-remote: Enumerating objects: 5, done.
-remote: Counting objects: 100% (5/5), done.
-remote: Compressing objects: 100% (3/3), done.
-remote: Total 3 (delta 1), reused 0 (delta 0), pack-reused 0
-Unpacking objects: 100% (3/3), done.
-From uit.mpei.ru:MovsisianRG/cs-lab02
-   434d199..8168f86  main       -> origin/main
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git log --oneline --decorate --all --graph
-* 8168f86 (origin/main, origin/HEAD) code: aaeaiea a e b
-* 434d199 (HEAD -> main) code: oiii?aiea a e b
-* 84a34f0 code: aiaaaeaia ?aciinou a e b
-* dfdb00c code: aiaaaeaia noiia a e b
-* 79d7c57 code: caaioiaea i?ia?aiiu n aaiaii ?enae
-* 00a65a5 build: add project file
-* 5fdca83 code: caaioiaea i?ia?aiiu
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git pull --ff-only
-
-Updating 434d199..8168f86
-Fast-forward
- main.cpp | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-19. ������ �������� � �����, ������� � ���� � �������� ������� �� ������
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git commit -a -m "code: max a,b"
-[main b59bab6] code: max a,b
- 1 file changed, 9 insertions(+), 1 deletion(-)
-
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git push
-Enumerating objects: 5, done.
-Counting objects: 100% (5/5), done.
-Compressing objects: 100% (3/3), done.
-Writing objects: 100% (3/3), 424 bytes | 106.00 KiB/s, done.
-Total 3 (delta 1), reused 0 (delta 0)
-remote: . Processing 1 references
-remote: Processed 1 references in total
-To uit.mpei.ru:MovsisianRG/cs-lab02.git
-   8168f86..b59bab6  main -> main
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git commit -a -m "code: Min a,b"
-[main 8dab624] code: Min a,b
- 1 file changed, 10 insertions(+), 1 deletion(-)
-
-u113-13@PROG-25 MINGW32 /l/I ����/�-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git push
-To uit.mpei.ru:MovsisianRG/cs-lab02.git
- ! [rejected]        main -> main (fetch first)
-error: failed to push some refs to 'git@uit.mpei.ru:MovsisianRG/cs-lab02.git'
-hint: Updates were rejected because the remote contains work that you do
-hint: not have locally. This is usually caused by another repository pushing
-hint: to the same ref. You may want to first integrate the remote changes
-hint: (e.g., 'git pull ...') before pushing again.
-hint: See the 'Note about fast-forwards' in 'git push --help' for details.
-$ git fetch
-remote: Enumerating objects: 5, done.
-remote: Counting objects: 100% (5/5), done.
-remote: Compressing objects: 100% (3/3), done.
-remote: Total 3 (delta 1), reused 0 (delta 0), pack-reused 0
-Unpacking objects: 100% (3/3), done.
-From uit.mpei.ru:MovsisianRG/cs-lab02
-   8168f86..b59bab6  main       -> origin/main
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git log --oneline --decorate --all --graph
-* 8dab624 (HEAD -> main) code: Min a,b
-| * b59bab6 (origin/main, origin/HEAD) code: max a,b
-|/
-* 8168f86 code: aaeaiea a e b
-* 434d199 code: oiii?aiea a e b
-* 84a34f0 code: aiaaaeaia ?aciinou a e b
-* dfdb00c code: aiaaaeaia noiia a e b
-* 79d7c57 code: caaioiaea i?ia?aiiu n aaiaii ?enae
-* 00a65a5 build: add project file
-* 5fdca83 code: caaioiaea i?ia?aiiu
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main|REBASE 1/1)
-$ git add main.cpp
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main|REBASE 1/1)
-$ git rebase --continue
-Applying: code: Min a,b
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git fetch
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$ git log --oneline --decorate --all --graph
-* 8f5697c (HEAD -> main) code: Min a,b
-* b59bab6 (origin/main, origin/HEAD) code: max a,b
-* 8168f86 code: aaeaiea a e b
-* 434d199 code: oiii?aiea a e b
-* 84a34f0 code: aiaaaeaia ?aciinou a e b
-* dfdb00c code: aiaaaeaia noiia a e b
-* 79d7c57 code: caaioiaea i?ia?aiiu n aaiaii ?enae
-* 00a65a5 build: add project file
-* 5fdca83 code: caaioiaea i?ia?aiiu
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/bob/project (main)
-$
-20. ������� ����� double, ������� ��� ���������� � � b �� double, ��������������� ����� main �� ����� � �������� � ���� ����� double � main
-$ git fetch
-remote: Enumerating objects: 5, done.
-remote: Counting objects: 100% (5/5), done.
-remote: Compressing objects: 100% (3/3), done.
-remote: Total 3 (delta 1), reused 0 (delta 0), pack-reused 0
-Unpacking objects: 100% (3/3), done.
-From uit.mpei.ru:MovsisianRG/cs-lab02
-   b59bab6..8f5697c  main       -> origin/main
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git log --oneline --decorate --all --graph
-* 7ec4e0d (double) code: double a,b
-* 9254bb9 code: niaiee eio ia aaae
-* 16d3cd7 code: aiaaaee ieieioi
-| * 8f5697c (origin/main) code: Min a,b
-| * b59bab6 (HEAD -> main) code: max a,b
-| * 8168f86 code: aaeaiea a e b
-| * 434d199 code: oiii?aiea a e b
-|/
-* 84a34f0 code: aiaaaeaia ?aciinou a e b
-* dfdb00c code: aiaaaeaia noiia a e b
-* 79d7c57 code: caaioiaea i?ia?aiiu n aaiaii ?enae
-* 00a65a5 build: add project file
-* 5fdca83 code: caaioiaea i?ia?aiiu
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git pull --ff-only
-Updating b59bab6..8f5697c
-Fast-forward
- main.cpp | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git fetch
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git log --oneline --decorate --all --graph
-* 7ec4e0d (double) code: double a,b
-* 9254bb9 code: niaiee eio ia aaae
-* 16d3cd7 code: aiaaaee ieieioi
-| * 8f5697c (HEAD -> main, origin/main) code: Min a,b
-| * b59bab6 code: max a,b
-| * 8168f86 code: aaeaiea a e b
-| * 434d199 code: oiii?aiea a e b
-|/
-* 84a34f0 code: aiaaaeaia ?aciinou a e b
-* dfdb00c code: aiaaaeaia noiia a e b
-* 79d7c57 code: caaioiaea i?ia?aiiu n aaiaii ?enae
-* 00a65a5 build: add project file
-* 5fdca83 code: caaioiaea i?ia?aiiu
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main|MERGING)
-$ git add main.cpp
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main|MERGING)
-$ git merge --continue
-[main 63c7f6a] Merge branch 'double' into main neee aaoeo double a main
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$ git push
-Enumerating objects: 17, done.
-Counting objects: 100% (17/17), done.
-Compressing objects: 100% (13/13), done.
-Writing objects: 100% (13/13), 1.59 KiB | 56.00 KiB/s, done.
-Total 13 (delta 4), reused 0 (delta 0)
-remote: . Processing 1 references
-remote: Processed 1 references in total
-To uit.mpei.ru:MovsisianRG/cs-lab02.git
-   8f5697c..63c7f6a  main -> main
-
-u113-13@PROG-25 MINGW32 /l/I eo?n/A-3-23/Rafael Movsisyan/lab02/lab02/alice/project (main)
-$
-
-
-
-