Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.3 KB

README.md

File metadata and controls

49 lines (40 loc) · 1.3 KB

ASE-1-Project

TDrive

Build Status Coverage Status

Hosted On :

Cloning the project

  • Run command git clone https://github.com/ASE-Group-23/ASE-1-Project.git and change into the project folder
  • Create a virtual environment env in the repository (use virtualenv, etc)
  • Install the requirements
  • Activate virtual environment

To create virtual environment and install requirements run following commands

virtualenv env
pip install -r requirements.txt

To activate the environment use following commands: Window:

.\env\Scripts\activate

Ubuntu/Linux

source env/bin/activate

Making a new branch

git checkout -b <branch-name>

branch-name : can be your name

For Pushing Changes

git push -u origin <branch-name>

Version Control Workflow

After making any changes, follow these steps before pushing to the repo.

  1. git add .
  2. git commit -m "commit msg"
  3. git pull
  4. git push