This repository serves as a learning platform for various programming languages and concepts. Each course has its dedicated folder containing assignments submitted by students.
The primary goal of this repository is to provide a structured environment for students to explore and practice different programming languages and concepts.
- Install Git: Download and install Git from Git's official website.
-
Fork the Repository: Click on the "Fork" button at the top right corner of the repository page to create your copy of the repository.
-
Clone the Forked Repository: Open your terminal or command prompt and use the
git clonecommand to clone the forked repository to your local machine.git clone https://github.com/doudgaya/codingdocx.git
-
Create a Branch: Move into the repository directory on your local machine and create a new branch for your assignment.
cd codingdocx git checkout -b assigment -
Navigate to the Course Directory: Enter the directory for the specific course (e.g.,
Javascript) where you want to submit the assignment. -
Create Your Assignment File: Create a new file with an appropriate name for your assignment within the course directory. Write your code or content in this file.
-
Save and Commit Changes: Add your changes to the staging area and commit them with a meaningful commit message.
git add . git commit -m "Add your assignment message"
-
Push Your Changes: Push your committed changes to your forked repository.
git push origin your-branch-name
-
Create a Pull Request: Visit your forked repository on GitHub. Click on the "New Pull Request" button, review your changes, and submit the pull request for review.
Remember to replace your-username with your GitHub username and your-branch-name with a descriptive name for your assignment branch.