Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
remarcmij
left a comment
There was a problem hiding this comment.
Hi @halyna1995, thanks for submitting your first assignment. In the task1 script there are some issues I would like you to address. Please make sure to run your script and verify that it does all the required tasks, without error messages.
For task2, your GitHub welcome page looks nice altough I seem to be missing the Top Languages Card.
| mkdir resources | ||
| touch settings.conf | ||
| mkdir src | ||
| cd resources |
There was a problem hiding this comment.
Instead of cd-ing into the directory, you can also create/access files by using a path, e.g.:
touch resources/xyz.txt| git status | ||
| git add . | ||
| git commit -m "Initial commit" | ||
| git push |
There was a problem hiding this comment.
This push is not asked for in the instructions. As it stands, it produces an error message because no remote repository has been defined:
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using
git remote add <name> <url>
and then push using the remote name
git push <name>
| rm -r profile | ||
| cd .. | ||
| cd resources | ||
| rm "family picture.jpg" |
There was a problem hiding this comment.
Here, you have correctly used quotes for the file name containing a space. However, that file was not created. Hence, the error message:
rm: cannot remove 'family picture.jpg': No such file or directory
| git status | ||
| git add . | ||
| git commit -m "write welcome text to README, remove profile directory , remove family_picture.jpg" | ||
| git push |
task-2/github-username.txt
Outdated
| @@ -1 +1,2 @@ | |||
| <paste here your github username> No newline at end of file | |||
| <halyna1995> | |||
There was a problem hiding this comment.
In general, when you see a comment in angle brackets, you should replace the whole comment, including the angle brackets with your replacement.
| <halyna1995> | |
| halyna1995 |
Co-authored-by: Jim Cramer <remarcmij@gmail.com>
Co-authored-by: Jim Cramer <remarcmij@gmail.com>
This comment has been minimized.
This comment has been minimized.
1 similar comment
This comment has been minimized.
This comment has been minimized.
Co-authored-by: Jim Cramer <remarcmij@gmail.com>
This comment has been minimized.
This comment has been minimized.
Co-authored-by: Jim Cramer <remarcmij@gmail.com>
Co-authored-by: Jim Cramer <remarcmij@gmail.com>
This comment has been minimized.
This comment has been minimized.
1 similar comment
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
📝 HackYourFuture auto gradeAssignment Score: 61 / 100 ✅Status: ✅ Passed Test Details |
No description provided.