Experiments with git:
- Create a new repository
- Write this readme
- Install git
- Create SSH key and add SSH key to GitHub
ssh-keygen -t ed25519 -C 'my@email' eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_ed25519
- Clone repository
git clone [email protected]:luridev/hi-github.git
- Update README.md
- Add this file to staging area
git add 'README.md'
- Commit and push
git commit -m 'Update README.md from git' git push