Week 3 - Task
Week 3 - Task
7. Open your file index.html in notepad or notepad++. Add these lines of code & save
<html>
<head>
<title> My Title </title>
</head>
<body>
My First Page
</body>
</html>
8. Open resources.txt and Write your name and Save this file
9. Initialize a Git repository/working directory
git init
Check your Folder, you will see .git folder. And within this folder you will find
Git Related Folders and files.
15. After all commit, Check Status of Working directory (This will show you message like
nothing to commit, working tree clean)
git status
16. Make changes to resources.txt. Add few names of your friends
17. Check with git status, it will show (changes not staged for commit)
git status
18. Add file or files
git add .
19. Commit chages in your working directory with commit message
git commit -m ‘Changed resouces.txt’
20. Check with git status, it will show (changes not staged for commit)
git status
Task 4 – GUI