-
Notifications
You must be signed in to change notification settings - Fork 19
Atiqa N. #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Atiqa N. #23
Conversation
📝 HackYourFuture auto gradeAssignment Score: 82 / 100 ✅Status: ✅ Passed Test Details |
mnvacym
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 | ||
| echo "Creating project…" | ||
| mkdir project | ||
| git init |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 | |||
| echo "Creating project…" | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.