click create New Repository
entered Repository name - JSON
choose Public repo, add a Readmy file, create repo.
git clone https://......
cd JSON
touch new.json
or
cat > new.json
"control + c"
git add new.json
git commit -m "newJSONFile"
git push
or u can add file via GitHub (click on button Add file)"
7. Edit the contents of the new.json
file - write information about yourself (name, age, number of pets, future desired salary). Everything is written in JSON format
cat >> new.json
or
vim new.json
add information in JSON format
git add new.json
git commit -m "text"
git push
cat > preferences.json
10. Add information about your preferences (Favorite movie, favorite series, favorite food, favorite season, country you would like to visit) to the preferences.json
file in JSON format
cat >> preferences.json
add information in JSON format
11. Create a file skills.json
add information about the skills that will be studied in the course in JSON format
cat > skills.json
add information in JSON format
git add .
git commit -m "text"
git push
Add file
Create new file
Add changes
click on the button [Commit changes]
edit file
write bug report in JSON format
click on the button [Commit changes]
git pull