Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 1.98 KB

File metadata and controls

77 lines (56 loc) · 1.98 KB

To do Smart Contract Tasks

Welcome to the TODO List Smart Contract Workshop! Follow the steps below to contribute your solution to the repository:

Instructions

1. Clone the Repository

Clone the workshop repository to your local machine:

git clone <repository_url>
cd <repository_name>

2. Create a Branch

Create a new branch for your solution. Name the branch using your first name and a brief description of your solution (e.g., john-todo-list-solution):

git checkout -b <your_branch_name>

Example:

git checkout -b john-todo-list-solution

3. Create Your Folder

Inside the repository, create a new folder named after your first name. Add your solution files (e.g., the smart contract, tests, README for your solution, etc.) into this folder.

mkdir <your_name>

Example:

mkdir john

4. Add Your Files

Add your solution files to your folder. Make sure your files are well-organized and include necessary documentation or comments explaining your implementation.

5. Commit Your Changes

After adding your files, commit your changes with a descriptive message:

git add .
git commit -m "Add TODO List solution for <your_name>"

Example:

git commit -m "Add TODO List solution for John Doe"

6. Push Your Branch

Push your branch to the remote repository:

git push origin <your_branch_name>

Example:

git push origin john-todo-list-solution

7. Create a Pull Request

Go to the GitHub repository in your browser. Create a pull request (PR) from your branch to the main branch. In the PR description, provide a brief overview of your solution and any unique features or considerations.


Notes

  • Ensure your solution compiles and passes all relevant tests before submitting.
  • Keep your folder organized and include clear documentation to help others understand your work.
  • Reach out to the workshop facilitator if you encounter any issues or need assistance.

Happy coding!