https://github.com/prakashupes/dbplus-relational-database-with-minimal-functionality
https://github.com/prakashupes/dbplus-relational-database-with-minimal-functionality
database hacktoberfest2020 hactoberfest relational-databases
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/prakashupes/dbplus-relational-database-with-minimal-functionality
- Owner: prakashupes
- License: gpl-3.0
- Created: 2020-09-07T14:35:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-12T05:25:30.000Z (about 5 years ago)
- Last Synced: 2025-01-13T20:25:32.708Z (over 1 year ago)
- Topics: database, hacktoberfest2020, hactoberfest, relational-databases
- Language: C++
- Homepage:
- Size: 2.67 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DBPlus:Relational Database With Minimal Functionality

### All the work reliy on the develop branch
### GUIDELINES of Contribution:
**Please follow these steps**
1. Fork Clone the repo to your gihub and local machine
```
git clone https://github.com/**your-github-handle**/3-Tier-Relational-Database.git
```
2. Create your own working branch to deploy your code that will be merged to develop. (**Direct code of develop brnach can create confilcts so the PR from develop to develop will not be merge**)
```
git checkout -b your-brach-name
```
3. Add remote named **upstream** ponting to the main repo (**origin** will point to your clone)
```
git add upstream https://github.com/prakashupes/3-Tier-Relational-Database.git
```
4. Keep updated with main repo
```
git fetch upstream
```
### Steps to run the project: