Tag: 到位桶

Bitbucket,Windows和“致命:无法读取密码”

我最近重新安装Windows,我有一个从存储库下载文件的问题。 我已经安装了GIT和Python,但是当我尝试从Bitbucket中下载任何东西时,我得到以下消息: "fatal: could not read Password for: 'https://username@bitbucket.org': No such file or directory". 我究竟做错了什么?

从Git Bashterminal创build新的回购Bitbucket?

是否有可能通过使用命令行Git在Bitbucket中创build一个新的存储库? 我已经尝试了以下内容: git clone –bare https://username@bitbucket.org/username/new_project.git 我得到这个消息: 克隆到裸仓库'new_project.git'… 致命的: https://username@bitbucket.org/username/new_project.git/info/refs找不到:你在服务器上运行git update-server-info? 如果不去networking应用程序,这将是很好的。

Bitbucket无法在git pull上进行身份validation

我使用BitBucket,并不得不改变我的密码,因为它被泄露。 git pull 远程:无效的用户名或密码。 如果您通过第三方服务login,则必须确保您的帐户configuration文件中设置了帐户密码。 致命:身份validation失败的' https://bitbucket.org/myusername/myproject.git/ ' 如何使用命令行更改我的密码?

Git克隆/拉不断冻结在“存储键caching?

我试图克隆从我的BitBucket帐户到我的Windows 10笔记本电脑(运行GitBash)的回购。 我已经完成了连接所需的所有步骤(设置我的SSH密钥,通过成功的SSH进行validationgit@bitbucket.org等)。 但是,每当我试图克隆回购,确认我想要cachingBitbucket的密钥后,提示不断挂断。 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 host, enter "y" to […]

如何在一个项目中同时使用Bitbucket和GitHub?

我有一个存储库,我想推入Bitbucket和GitHub。 我的资源库由两者托pipe是至关重要的。 有没有办法在Git中做到这一点?

如何将问题标记为从提交日志解决?

我注意到,在BitBucket中,当提交日志包含像#12这样的数字时,这个数字被链接到错误号12。 我发现这个function很有意思,我想知道是否有任何关键字可以让我将问题标记为提交日志,而不是每次都进入Web界面。 如果BitBucket没有这样做,你能指出一个系统吗?

如何避免GitHub / BitBucket上的合并提交地狱

在我们的回购中,我们结束了很多这样的提交: Merge branch 'master' of bitbucket.org:user/repo 每当开发人员将他/她的本地分支同步到顶级回购时,就会发生这种情况。 有没有办法避免这个合并 – 提交地狱混乱所有的回购日志? 当以某种方式启动拉取请求时,是否可以避开它们? 我知道我可以做git rebase,如果这是在我的本地虚拟机中完成的,GitHub / BitBucket UI中是否有任何等价物? 你们怎么做?

如何将本地更改推送到bitbucket上的远程git存储库

我正在testingGit和Bitbucket。 我已经在Bitbucket上创build了一个存储库,并创build了一个repo的本地副本,并将文件提交到它。 我似乎无法将文件从我的本地回购到远程回购。 这是我正在做的事情: git clone https://me@bitbucket.org/me/test.git cd test touch dummy git add dummy git commit dummy -m "my first git commit" git push 最后一行输出: Everything up-to-date 当我login到Bitbucket时,我无法看到我的虚拟文件。 我究竟做错了什么? 编辑: 这样做的工作: git push origin master:master 对这个和简单的git push之间的区别有什么解释?

执行失败的应用程序:processDebugResources Android Studio

我使用bitbucket,所以我可以与其他开发人员合作,但似乎我们无法完美地工作。 我从他那里得到了这个错误: Execution failed for task ':app:processDebugResources'. > com.android.ide.common.internal.LoggedErrorException: Failed to run command: E:\Program Files (x86)\Android\android-sdk\build-tools\19.0.0\aapt.exe package -f –no-crunch -IE:\Program Files (x86)\Android\android-sdk\platforms\android-19\android.jar -ME:\Documents\smart-my-job1\app\build\manifests\debug\AndroidManifest.xml -SE:\Documents\smart-my-job1\app\build\res\all\debug -AE:\Documents\smart-my-job1\app\build\assets\debug -m -JE:\Documents\smart-my-job1\app\build\source\r\debug -FE:\Documents\smart-my-job1\app\build\libs\app-debug.ap_ –debug-mode –custom-package com.smartmyjob Error Code: -1073741819

删除bitbucket中的最后一个提交

我犯了一个错误,我不知道如何删除我在库中的最新推送。 我拉最新的应用程序更新,但它有冲突,我把它推到知识库。 如何删除我最后一次提交? 或者如何解决它?