Using Git for Data Science
Jan. 24, 2021, 2:58 p.m.
Instantiating a Bitbucket repo:
git init
git remote add origin https://<username>@bitbucket.org/<username>/<repository-name>.git
git push -u origin master
Pulling from an existing Git repository:
mkdir new_directory_name
cd new_directory_name
git init
git remote add origin https://github.com/boxelder-john/dsl.git
git fetch --all
git pull origin master