-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy-steps.txt
More file actions
109 lines (81 loc) · 1.27 KB
/
my-steps.txt
File metadata and controls
109 lines (81 loc) · 1.27 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
### Step 2A
/Users/alainrene
### Step 2B
ls
cd desktop
### Step 2C
cd unit1-git-practice
### Step 2D
/Users/alainrene/desktop/unit1-git-practice
### Step 2E
ls
### Step 2F
my-steps.txt
### Step 2G
cd /
### Step 2H
/
### Step 2I
Applications Volumes etc sbin
Library bin home tmp
System cores opt usr
Users dev private var
### Step 2J
cd ~
### Step 2K
cd Desktop/unit1-git-practice
### Step 3A
mkdir veggies
mkdir meats
mkdir desserts
### Step 3B
mv desserts sweets
### Step 3C
mkdir proteins
### Step 3D
mv meats proteins
### Step 3E
cd veggies
touch carrot.txt
touch pea.txt
### Step 3F
cd ..
cd sweets
touch cookie.txt
### Step 3G
mv cookie.txt donut.txt
### Step 3H
cd ..
touch thing.txt
### Step 3I
cp -r thing.txt tofu.txt
### Step 3J
mv tofu.txt proteins
### Step 3K
cp -r thing.txt crab.txt
mv crab.txt proteins
cd proteins
mv crab.txt meats
### Step 3L
cd ..
rm -r thing.txt
### Step 3M
cp -r veggies plants
### Step 3N
mkdir drinks
rm -r drinks
### Step 4
git init
git add .
git commit -m 'first commit'
### Step 5
git remote add origin https://github.com/Alain-Rene/Practice-repository.git
git branch -M main
git push -u origin main
### Step 6
touch menu.txt
git add .
git commit -m 'starting a menu'
git push
### Step 7
*** DO NOT RECORD STEP 7 ***