git上传 bitbucket

Posted xiaobaibubai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git上传 bitbucket相关的知识,希望对你有一定的参考价值。

1.git 配置
git config --global user.name “用户名”

git config --global user.email “邮箱”

 

2.建立git仓库

在你的项目文件夹下执行git命令

git init

3. 将项目文件添加到仓库中

git add .

4. 将add的文件commit到仓库

git commit -m ‘备注‘

5. 将本地仓库关联到码云上

git remote add origin git@gitee.com:shiqingqing/test.git

6. 上传码云前要先pull 下

git pull origin  master

7.  最后一步 上传代码到码云仓库

git push -u origin master

执行完后到码云看你项目的代码

8.如果有git push -u orrgin master错误

错误提示为:
To github.com:PorterLi/myDataStructCode.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to ‘git@github.com:PorterLi/myDataStructCode.git‘
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., ‘git pull ...‘) before pushing again.
hint: See the ‘Note about fast-forwards‘ in ‘git push --help‘ for details.

原因:
远程仓库有本地没有的文件。即,两个仓库不同步。

解决方法:
不要git init
你应该先git clone远程仓库

然后再按照上述提交

以上是关于git上传 bitbucket的主要内容,如果未能解决你的问题,请参考以下文章

Git - 使用BitBucket和SourceTree进行源代码管理遇到POST git-receive-pack (chunked)

跟我一起创建bitbucket私有库

跟我一起创建bitbucket私有库

git使用笔记 bitbucket基本操作

免费的私人代码托管(bitbucket) 和 常用git指令

在 bitbucket 上使用 git 部署到 Heroku