Upload local files (code) to remote (Gitee)

Method (the code file already exists locally):

1. First create a warehouse in Gitee (same as other remote warehouses)

2. Open gitBash in the root directory of the local code file

3. Initialize git init

4. Perform remote warehouse link git remote add origin https://gitee.com/zijicangku/uniapp.git

5. Upload code git add .

6. Type remarks git commit -m "Remarks"

7. Push to the remote git push -u origin master

Guess you like

Origin blog.csdn.net/weixin_44191318/article/details/125302259
Recommended