A simple web app to edit text documents.
- Clone this repository:
git clone https://github.com/skye8-tech/text-editor.git
- Navigate to the directory on your computer containing the cloned repository.
cd text-editor
- Create a new branch to work on. This should be your task name e.g
header
:git switch -b header
- Do your work/task
- Stage your changes:
git add .
- Commit your changes:
git commit -m "finished the header
- Push your changes:
git push -u origin header
- Navigate to https://github.com/skye8-tech/text-editor/pulls and create a pull request.
- Done.