-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhistory.txt
More file actions
51 lines (51 loc) · 1.14 KB
/
history.txt
File metadata and controls
51 lines (51 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
1771 mkdir git-majonez
1772 cd git-majonez
1773 git init
1774 ls -la
1775 vim main.cpp
1776 ls
1777 g++ main.cpp -o a
1778 ./a
1779 git status -s
1780 git add main.cpp
1781 git commit -m "Initial commit"
1782 vim main.cpp
1783 g++ main.cpp -o a
1784 ./a
1785 git status -s
1786 git add -u
1787 git commit -m "Farewell changed"
1788 git remote add origin https://github.com/DarioDarioCS/git-majonez.git
1789 git push -u origin master
1790 git branch
1791 git branch cs
1792 git branch
1793 git log
1794 git checkout cs
1795 git log
1796 git reset --hard HEAD~1
1797 git log
1798 vim main.cpp
1799 git diff
1800 g++ main.cpp -o a
1801 ./a
1802 git diff
1803 git add -u
1804 git commit -m "Greetings"
1805 git log
1806 git push origin cs
1807 git checkout master
1808 git merge cs
1809 vim main.cpp
1810 git diff
1811 g++ main.cpp -o a
1812 ./a
1813 git status -s
1814 git add main.cpp
1815 git status -s
1816 git commit -m "Merge branch 'cs'
1817 git commit -m "Merge branch 'cs'"
1818 git merge --status
1819 git merge --continue
1820 l
1821 history > history.txt