- Contains tables with people, phones and docs information
- Allows to add, modify and delete information
Clone the project on your local repository
git clone https://github.com/auplt/PeopleDB.git
- Switch on the docs_table branch
git checkout docs_table
- Commit your changes on local repository
Description by lines:
- Adds all files from our folder to git's index OR you can specify file names
- NOT NECESSARY you can check what files are added to git's index
- Commits changes to your local repository. must be changed on custom name
git add *
git status
git commit -m "<commit name>"
- Push changes on GitHub
git push origin docs_table
- Switch on the show_by_page branch
git checkout show_by_page
- Commit your changes on local repository
Description by lines:
- Adds all files from our folder to git's index OR you can specify file names
- NOT NECESSARY you can check what files are added to git's index
- Commits changes to your local repository.
<commit name>must be changed on custom name
git add *
git status
git commit -m "<commit name>"
- Push changes on GitHub
git push origin show_by_page