无法从 bitbucket 获取上传项目
Posted
技术标签:
【中文标题】无法从 bitbucket 获取上传项目【英文标题】:Unable to get upload project from bitbucket 【发布时间】:2018-05-18 16:52:28 【问题描述】:我是 bitbucket 的新手。我想将项目从 Linux 上传到 bitbucket。我已成功创建了一个 bitbucket 帐户并执行了以下操作
1) 创建一个存储库名称“testadmin”
2)使用命令行cd /var/www/myname/myprojectname
git init
git remote add origin https://username@bitbucket.org/user/testadmin.git
git pull origin master
然后我得到
Password for 'https://user@bitbucket.org':
From https://bitbucket.org/user/testadmin
* branch master -> FETCH_HEAD
Merge made by the 'recursive' strategy.
README.md | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
但我没有从 bitbucket 获得我的项目。请帮助我
【问题讨论】:
您是否在 Bitbucket 的存储库中添加了代码? @HimanshuUpadhyay :现在有一个文件 README.md 如果存储库中没有项目代码,那么如何从那里获取项目?当你拉动时,你会从那里得到 readme.md 文件。不是吗? @HimanshuUpadhyay :我想将项目从我的 linux 机器上传到 bitbucket。所以我执行了以下命令..我是 bit bucket 的新手,请纠正我我做错了什么 @LawrenceCherone 谢谢亲爱的..thankyew 非常感谢。它现在正在工作.. 【参考方案1】:好的,那么
我建议您将项目文件夹直接保存在www
中。就像如果您的项目文件夹名称是 project_1 那么它应该在 var/www/html/project_1
然后打开终端并到达文件夹project_1
cd /var/www/html/project_1
然后因为您已经启动了 git 并添加了远程源,所以您只需要将代码推送到 repo。
为此,请按以下步骤操作:
1) 您需要将所有文件添加到提交存储桶以上传到 repo。为此,
git add -A (it will add all the files of the folder project_1)
2) 提交带有消息的文件以跟踪您上传的作品
git commit -m "First time uploading project 1" // The commit message will be for your reference.
3) 现在推送提交的代码:
`git push origin master` // this command will push the code to master branch which is the default branch in a repo. You can create any branches on Bitbucket and add their name after origin to push to that particular branch.
在这 3 个命令之后,检查你的 repo。你应该在那里看到你的项目。
如果您需要进一步的帮助,请发表评论。
【讨论】:
以上是关于无法从 bitbucket 获取上传项目的主要内容,如果未能解决你的问题,请参考以下文章