click create New Repository
entered Repository name - XML
choose Public repo, add a Readmy file, create repo.
git clone https://......
cd XML
touch new.xml
or
cat > new.xml
"control + c"
git add new.xml
git commit -m "newXML"
git push
7. Edit the contents of the new.xml
file - write information about yourself (name, age, number of pets, future desired salary). Everything is written in XML format
cat >> new.xml
add information in XML format
git add new.xml
git commit -m "text"
git push
cat > prefernces.xml
10. Add information about your preferences (Favorite movie, favorite series, favorite food, favorite season, country you would like to visit) to the preferences.xml
file in XML format.
vim preferences.xml
add information in XML format
11. Create a file skills.xml
add information about the skills that will be studied in the course in XML format
cat > skills.xml
add information in XML format
git commit -am "text"
or
git add . && git commit -m "allNewChanges"
git push
or u can join 12 and 13
- git commit -am "text" && git push
- 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 XML format
click on the button [Commit changes]
git pull