Follow the steps below to create and organize your repository for the Backend Development course.
-
Install Git from:
-
During installation, keep the default settings unless instructed otherwise.
-
On Windows, use Git Bash for all Git commands.
- Sign in to your GitHub account.
- Click New Repository.
- Configure the repository as follows:
| Setting | Value |
|---|---|
| Repository Name | BackendDevelopment |
| Description | sapid |
| Visibility | Public (unless instructed otherwise) |
| Initialize Repository | ✔ Add a README file |
- Click Create Repository.
Open Git Bash.
Navigate to the directory where you keep your projects.
Example:
cd ~/ProjectsClone your repository:
git clone https://github.com/<your-username>/BackendDevelopment.gitReplace <your-username> with your GitHub username.
Move into the repository:
cd BackendDevelopmentCreate the following directory structure:
BackendDevelopment
├── Lab
│ └── Exp 1
│ ├── Report.md
│ ├── parta
│ │ └── index.html
│ └── partb
│ └── index.html
├── README.md
└── Theory
mkdir -p "Lab/Exp 1/parta"
mkdir -p "Lab/Exp 1/partb"
mkdir Theory
touch "Lab/Exp 1/Report.md"
touch "Lab/Exp 1/parta/index.html"
touch "Lab/Exp 1/partb/index.html"If the tree command is available, run:
treeExpected output:
.
├── Lab
│ └── Exp 1
│ ├── Report.md
│ ├── parta
│ │ └── index.html
│ └── partb
│ └── index.html
├── README.md
└── Theory
git add .
git commit -m "Initial Backend Development repository structure"
git push origin mainIf your default branch is
masterinstead ofmain, replacemainwithmaster.
- Repository named
BackendDevelopment - Description set to
sapid - README file added during repository creation
- Repository successfully cloned locally
- Folder structure created exactly as specified
- Initial commit pushed to GitHub
Dummy Repository https://github.com/prateekrajgautam/BackendDevelopmentUPES