> For the complete documentation index, see [llms.txt](https://kawsing.gitbook.io/opensystem/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kawsing.gitbook.io/opensystem/github/git-la-hui-repositories.md).

# git 拉回Repositories

## 使用pull拉回之前的專案

```
mkdir mypyhton
cd mypyhton
git init
git remote add origin https://github.com/kawsing/mypython.git
git pull origin master
```
