Questions tagged «bitbucket»

Bitbucket是Git和Mercurial的托管站点。该服务产品包括问题跟踪器和Wiki,以及与许多流行的第三方服务的集成。Atlassian于2010年收购了bitbucket.org。



18
存储库访问被拒绝。通过部署密钥进行的访问是只读的
从heroku成功克隆我的存储库并添加另一个远程服务器后 1/ git clone git@heroku.com:[APP].git 2/ git remote add bitbucket ssh://git@bitbucket.org/[ACCOUNT]/[REPO].git 3/ git push bitbucket master 在运行第(3)行或使用SourceTree之后,我仍然收到此错误 conq: repository access denied. access via a deployment key is read-only. 首先,我不了解此消息在实践中的含义。那太可惜了。 我确实创建了ssh密钥对,并将其添加到heroku中: ssh-keygen -t rsa heroku keys:add ./id_rsa.pub 我还在BitBucket的“部署密钥”部分中添加了我的密钥。但是我一定想念一些东西。这个问题并非出于懒惰,我一直在阅读各种文档,包括BitBuckets指南。但是它仍然无法解决这个问题。 这篇文章与我可以将我的heroku git repo导入bitbuket有关吗?如何? 其他事实: ssh -T hg@bitbucket.org conq: authenticated via a deploy key. …
302 git  ssh  bitbucket  ssh-keys 


8
Bitbucket git凭据(如果已与Google注册)
我在bitbucket.org上拥有一个通过注册Google帐户创建的帐户。现在,每次登录时,只需单击“使用Google登录”,就可以了。 如何从git命令行访问我的存储库?它要求我用户名和密码。我有一个用户名,但没有密码。那我该如何登录?

12
登录时启动ssh-agent
我有一个站点,它是使用SSH别名从Bitbucket.com提取的远程Git存储库。我可以在服务器上手动启动ssh-agent,但是每次通过SSH登录时都必须这样做。 我手动启动ssh-agent: eval ssh-agent $SHELL 然后添加代理: ssh-add ~/.ssh/bitbucket_id 然后在执行以下操作时显示: ssh-add -l 而且我很好。有没有什么方法可以自动执行此过程,所以我不必每次登录都这样做?服务器正在运行RedHat 6.2(圣地亚哥)。
261 git  ssh  bitbucket  redhat  ssh-agent 

7
使用dockerfile克隆私人git repo
我已经从似乎各种各样的工作dockerfile中复制了此代码,这是我的: FROM ubuntu MAINTAINER Luke Crooks "luke@pumalo.org" # Update aptitude with new repo RUN apt-get update # Install software RUN apt-get install -y git python-virtualenv # Make ssh dir RUN mkdir /root/.ssh/ # Copy over private key, and set permissions ADD id_rsa /root/.ssh/id_rsa RUN chmod 700 /root/.ssh/id_rsa RUN chown -R …
240 git  bitbucket  docker 


17
您的配置指定要与远程服务器上的<分支名称>合并,但是没有获取任何此类引用。
我收到拉动此错误: 您的配置指定要与远程的ref'refs / heads / feature / Sprint4 / ABC-123-Branch'合并,但未获取此类ref。 其他任何分支都不会出现此错误。该分支的特殊之处在于它是从另一个分支的上一次提交创建的。 我的配置文件如下所示: [core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true hideDotFiles = dotGitOnly [remote "origin"] url = &lt;url here&gt; fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = …

12
Bitbucket上的Git:即使上传了我的公共SSH密钥,也总是要求输入密码
我已按照说明~/.ssh/id_rsa.pub将我上传到Bitbucket的SSH密钥,但是Git在每次操作(例如)时仍要求我提供密码。我错过了什么?git pull 它是一个私有存储库(另一个人的私有存储库的叉子),我这样克隆它: git clone git@bitbucket.org:Nicolas_Raoul/therepo.git 这是我的本地人.git/config: [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = https://Nicolas_Raoul@bitbucket.org/Nicolas_Raoul/therepo.git [branch "master"] remote = origin merge = refs/heads/master 在具有相同公钥的相同环境中,Github上的Git可以正常工作。 .ssh是rwx------,.ssh/id_rsa是-rw-------,.ssh/id_rsa.pub是-rw-r--r--
179 git  ssh  bitbucket 

4
如何在Bitbucket中标记嵌套列表项?
我正在尝试从Bitbucket页面实时浏览器中查看带有相应缩进的markdown嵌套列表项。但是即使使用他们的示例(更新),我也无法弄清楚它是如何工作的: * Item 1 * Item 2 * Item 3 * Item 3a * Item 3b * Item 3c 它忽略项目3a-c的缩进: 我希望它看起来像这样(语法在SE和Github上效果很好): 他们在列表示例中的列表特别不可接受: 1. Step 1 2. Step 2 3. Step 3 * Item 3a * Item 3b * Item 3c 这是我为此设置的一个仓库。

6
从GitHub到Bitbucket的分叉
我正在开发一个基于CakePHP的项目,该项目托管在GitHub上。我的项目托管在Bitbucket上。他们两个都使用git。基本上,我想在我的Bitbucket存储库中创建CakePHP 的“叉子”(不知道使用的术语是否正确,因为我是git的新手),以便能够获取更新无需下载所有CakePHP zip / tar并替换文件夹,然后提交并推送,但可能需要使用“合并”(?)。
160 git  github  bitbucket 

8
Git克隆/拉取持续冻结在“将密钥存储在缓存中吗?”
我正在尝试从BitBucket帐户向Windows 10便携式计算机(运行GitBash)克隆存储库。我已经完成了连接所需的所有步骤(设置我的SSH密钥,并通过成功SSHing git@bitbucket.org等进行了验证)。但是,每当我尝试克隆存储库时,在确认我要缓存Bitbucket的密钥后,提示就会不断挂断。 User@Laptop MINGW64 /C/Repos $ git clone git@bitbucket.org:mygbid/test.git Cloning into 'test'... The server's host key is not cached in the registry. You have no guarantee that the server is the computer you think it is. The server's rsa2 key fingerprint is: ssh-rsa 2048 97:8c:1b:f2:6f:14:6b:5c:3b:ec:aa:46:46:74:7c:40 If you trust this …

19
无法推送到Bitbucket上的Git存储库
我创建了一个新的存储库,但遇到一个奇怪的错误。我以前在Bitbucket上使用过Git,但是我只是重新格式化了,现在似乎无法让Git正常工作。提交后,我必须将电子邮件和名称添加到全局变量,但随后提交就可以了。 当我尝试使用命令 git push origin master 它不起作用。我收到此消息: $ git push origin master Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 我在这里茫然。我与之共享此存储库的朋友可以很好地访问它并将其推送到正确的位置,但是我似乎无法使其正常工作。
143 git  bitbucket  git-bash 


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.