Git远程仓库的使用

本文来自我的个人博客 https://www.zhangshenghai.com/posts/757/

在Github中创建远程库,然后从远程库克隆到本地。

git clone [email protected]:shenghaishxt/ProjectName.git  # 克隆
cd ProjectName/
git add .  # 添加文件
git commit -m 'ProjectName'
git push

你可能感兴趣的:(Git远程仓库的使用)