- Create a new directory named
githomework1
. - Initialize an empty git repository with
git init
. - Using your choice of text editor, create a README.md file.
- Using the git command line, add this file to staging, then commit the file to your repository with a suitable commit message.
git add <filename>
thengit commit
- Write a suitable commit message and finalize your commit
- 📸 Take a screenshot of your terminal output
- Show the commit history
git log
- 📸 Take a screenshot of your terminal output
- Create a new public repository on GitHub
- Add your GitHub repository as a remote for your local
githomework1
repositorygit remote add origin <url>
- Push your local
githomework1
repository to GitHub - Include your repository URL in your submission
- Create a new branch called
playing-with-bash
- Create 5 empty files with the names up to you
- Use
echo
into the 5 empty files a few sentences about anything - Stage, commit and push your work on GitHub
- Open up a pull request
- When you are done, please commit your changes, and push it to GitHub.
- Open up a pull request and add your Learning Support Person as a reviewer. You may need to add them to your repository.