Metadata-Version: 2.1
Name: YCPython
Version: 0.0.1
Summary: Python package by YuChulYANG
Home-page: https://gitlab.com/ycyang/YCPython/
Author: YuChul YANG
Author-email: yuchulyang@naver.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# YCPython


## Getting started
```
git clone https://gitlab.com/ycyang/YCPython.git
```

## Upload files
```
git add *
git commit -m "some message"
git push -uf origin main
```

## Local directory --> GitLab

```
cd existing_repo
git remote add origin https://gitlab.com/ycyang/YCPython.git
git branch -M main
git push -uf origin main
```

## GitLab --> Local
```
git pull origin main
```




