├── README.md ├── rest └── weekend │ └── 2 │ └── run.py └── work └── monday └── run.py /README.md: -------------------------------------------------------------------------------- 1 | test 2 | test2 3 | -------------------------------------------------------------------------------- /rest/weekend/2/run.py: -------------------------------------------------------------------------------- 1 | run.py 2 | -------------------------------------------------------------------------------- /work/monday/run.py: -------------------------------------------------------------------------------- 1 | git remote add origin https://github.com/veragloo/projectSTAR.git 2 | git branch -M main 3 | git push -u origin main 4 | --------------------------------------------------------------------------------