I am working on assingment where I am using github to add images to a website. For the most part I understand everything except the last part. the intructions are
Open a terminal to move the images provided in the /resources folder to the /images folder inside your /rescue directory using the command below:
mv ./resources/* ./rescue/images/
I do not know how to do this.
I tried the options buttion and I clicked the teminal option, and then clicked new terminal.
ColtonP is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
- Clone your repository
git clone <repo_link>
- Go inside your repository
cd your-repo
- move the images
mv ./resources/* ./rescue/images/
- Push the changes to Github
git add .
git commit -m "Commit message"
git push origin main
If you asked something else, comment and I will update the result.