Skip to content

Latest commit

 

History

History
62 lines (50 loc) · 926 Bytes

README.md

File metadata and controls

62 lines (50 loc) · 926 Bytes

Doctor fee prediction

Start Machine Learning project.

Software and account Requirement.

  1. Github Account
  2. VS Code IDE
  3. GIT cli
  4. GIT Documentation

Creating conda environment

conda create -p venv python==3.7 -y
conda activate venv/

OR

conda activate venv
pip install -r requirements.txt

To Add files to git

git add .

OR

git add <file_name>

Note: To ignore file or folder from git we can write name of file/folder in .gitignore file To check the git status

git status

To check all version maintained by git

git log

To create version/commit all changes by git

git commit -m "message"

To send version/changes to github

git push origin main

To check remote url

git remote -v