SOP Developer
Case: adding "SandBox/" directory with git clone in docubase
Clone the project
git clone git@github.com:cbk2000/docubase.git
Enter the project
cd docubase
Setup local development
Disable CRLF EOF
git config --global core.autocrlf false
Create new branch
git checkout -b feat/sandbox
Create SandBox Directory
mkdir SandBox
Create file in the SandBox Directory
cd SandBox
touch README.md
*Needed so that git keeps track of the changes, empty directories by default will get ignored by git
Push changes
git add .
git commit -m "Added SandBox Directory in Root"
git push origin feat/sandbox