码云的使用

1、新建一个仓库
选择基本的配置,生成一个代码仓库。

2、本地拉去远程代码。
a、 建立本地和远程的连接。
git remote add origin https://gitee.com/xxxxx/xxxx.git(远程仓库地址)
b、拉去远程代码
git pull

3、将要提交的代码复制到拉去的文件中,然后git push。

你可能感兴趣的:(码云的使用)