Conversation
📝 HackYourFuture auto gradeAssignment Score: 82 / 100 ✅Status: ✅ Passed Test Details |
mnvacym
left a comment
There was a problem hiding this comment.
Hi Atiqa, well done on your first assignment.
There are minor improvements needed for the first task. I’ve added them as comments; please let me know if anything is unclear.
For the second task, it appears there is an issue with Top Languages Card and Streak Stats Card on your GitHub profile.
Overall, you did a good job. Good luck on your journey at Hack Your Future.
| rm "family picture.jpg" | ||
| cd ../ | ||
| git add . | ||
| git commit -m "second commit" |
There was a problem hiding this comment.
The commit message needs to be descriptive:
11. Create a second commit with the new changes. Provide a descriptive message.
| node program.js | ||
| cd ../ | ||
| git add . | ||
| git commit -m "third commit" |
There was a problem hiding this comment.
Same here, the commit message needs to be descriptive:
18. Create a third commit with the last changes. Provide a descriptive message.
| # Write your code here No newline at end of file | ||
| echo "Creating project…" | ||
| mkdir project | ||
| git init |
There was a problem hiding this comment.
The git repository needs to be created inside the folder project. Currently it creates the git repository inside the directory where you run this bash script.
3. Create new git repository inside the folder “project”
| @@ -1 +1,42 @@ | |||
| # Write your code here No newline at end of file | |||
| echo "Creating project…" | |||
There was a problem hiding this comment.
Usually it is a good practice to include #!/bin/bash or #!/usr/bin/env bash line at the beginning of a shell script file.
No description provided.