使用git将ubuntu下的文件传到gitee仓库

默认前面已经绑定好SSH密匙以及注册相应的账号等
1.在Ubuntu下新建仓库文件夹,进入文件夹
2.初始化仓库

git init

3.把文件放到暂存区

git add test.txt
git commit -m "create a new file"

4.提交到仓库

git remote add origin https://gitee.com/仓库具体地址(去gitee仓库看一下)

5.提交

git push origin master

需要输入gitee的用户名和密码

报错
使用git将ubuntu下的文件传到gitee仓库_第1张图片
因为 gitee 中的 README.md 文件不在本地仓库中
输入如下进行合并

git pull --rebase origin master

再次提交

git push -u origin master

提交成功
使用git将ubuntu下的文件传到gitee仓库_第2张图片

你可能感兴趣的:(ubuntu,git)