-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy-steps.txt
More file actions
113 lines (83 loc) · 1.39 KB
/
my-steps.txt
File metadata and controls
113 lines (83 loc) · 1.39 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
110
111
112
113
### Step 2A
/Users/brandonide
### Step 2B
cd /Users/brandonide/Desktop/
### Step 2C
cd /Users/brandonide/Desktop/unit1-git-practice
### Step 2D
/Users/brandonide/Desktop/unit1-git-practice
### Step 2E
ls
### Step 2F
my-steps.txt
### Step 2G
cd ~
### Step 2H
/Users/brandonide
### Step 2I
Applications
Creative Cloud Files Personal Account brandon.d.ide@gmail.com 2B0050C750EEFE230A490D44@AdobeID
Desktop
Documents
Downloads
Library
Movies
Music
Pictures
Public
Sites
portfoliosite.html
### Step 2J
cd /
### Step 2K
cd /Users/brandonide/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
touch tofu.txt
cp thing.txt tofu.txt
### Step 3J
mv tofu.txt proteins
### Step 3K
mv crab.txt proteins/meats
### Step 3L
rm thing.txt
### Step 3M
cp -r veggies plants
### Step 3N
mkdir drinks
rm -r drinks
### Step 4
cd /Users/brandonide/Desktop/unit1-git-practice
git init
git add .
git commit -m 'first commit'
### Step 5
git remote add origin https://github.com/grandcircusco/unit1-git-practice.git
git branch -M main
git push -u origin main
### Step 6
touch menu.txt
### Step 7
*** DO NOT RECORD STEP 7 ***