- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我镜像了一个 git 存储库并删除了 application.properties
包含来自 MyProject
的密码存储库。我可以看到 Deleted files
下的消息和我的文件名如下:
$ java -jar bfg-1.13.0.jar --delete-files application.properties --no-blob-protection MyProject.git
Using repo : \\hnas1-users\USERS\dan\Desktop\bfg_test_after_delete\MyProject.git
Found 0 objects to protect
Found 4 commit-pointing refs : HEAD, refs/heads/Single_home_page, refs/heads/Second_home_page, refs/heads/master
Protected commits
-----------------
You're not protecting any commits, which means the BFG will modify the contents of even *current* commits.
This isn't recommended - ideally, if your current commits are dirty, you should fix up your working copy and commit that, check that your build still works, and only then run the BFG to clean up your history.
Cleaning
--------
Found 862 commits
Cleaning commits: 100% (862/862)
Cleaning commits completed in 99,796 ms.
Updating 3 Refs
---------------
Ref Before After
---------------------------------------------------
refs/heads/Single_home_page | 7e099f8c | d4fa8bdc
refs/heads/Second_home_page | 0145da48 | 1b9b1ca2
refs/heads/master | 0e8ac08e | 502363b0
Updating references: 100% (3/3)
...Ref update completed in 393 ms.
Commit Tree-Dirt History
------------------------
Earliest Latest
| |
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
D = dirty commits (file tree fixed)
m = modified commits (commit message or parents changed)
. = clean commits (no changes to file tree)
Before After
-------------------------------------------
First modified commit | 5a303ff3 | 0280ae15
Last dirty commit | 7e099f8c | d4fa8bdc
Deleted files
-------------
Filename Git id
-----------------------------------------------------------------
application.properties | c5e94e15 (2.3 KB), b8f324fd (887 B), ...
Single_home_page
的 git mirror 克隆了我的代码存储库和因为有 4 个提交指向的引用,如上所示,它们是
HEAD, refs/heads/Single_home_page, refs/heads/Second_home_page, refs/heads/master
, 我想确保在删除上述文件后,我将更改推送到
Single_home_page
仅存储库。为此,我尝试执行以下操作:
git push origin Single_home_page
和
git push --set-upstream origin Single_home_page
两种情况都出现以下错误:
error: --mirror can't be combined with refspecs
git push origin Single_home_page
To http://<path to git repo>/MyProject.git
! [rejected] Single_home_page -> Single_home_page (non-fast-forward)
error: failed to push some refs to 'http://<path to git repo>/MyProject.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
+
对于我的分支:
$ git push origin +Single_home_page
Counting objects: 10089, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (4439/4439), done.
Writing objects: 100% (10089/10089), 32.84 MiB | 6.27 MiB/s, done.
Total 10089 (delta 5475), reused 6793 (delta 4329)
To http://<path to MyProject>/MyProject.git
+ 7e099f8...d4fa8bd Single_home_page -> Single_home_page (forced update)
最佳答案
既然你说你镜像了存储库,那么这里可能发生的是配置选项 remote.origin.mirror
设置。您可以通过运行 git config remote.origin.mirror
来确认这一点。 ,它会告诉你 true
如果设置了。
在这种情况下,最简单的方法是运行 git config --unset remote.origin.mirror
关闭此选项,然后再次尝试推送。不幸的是,没有一个有用的 --no-mirror
为您关闭此功能的选项。
关于git - 错误 : --mirror can't be combined with refspecs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49325013/
根据git config的文档,支持以下两项: remote..fetch The default set of "refspec" for git-fetch(1). See git-fet
我一直在关注 this guide关于配置 GitLab 与 Jenkins 的持续集成。 作为流程的一部分,需要按如下方式设置 refspec:+refs/heads/*:refs/remotes/
我在 eclipse 中有一个基于 java 的动态 web 项目,它被放置在 git 下进行源代码控制。我想将这个项目上传到 bitbucket 中的存储库中。为此,我使用了命令下面- git re
查看this示例显示 refspecs 可以过滤目录/命名空间,如下所示: +refs/heads/qa/*:refs/remotes/origin/qa/* 但是我正在尝试优化提取,而我正在使用的
嗨,我想推送一些东西到特定的远程分支 我制作局部区域 git clone https://~~~.Something cd https://~~~.Something 我可以使用访问特定的分支 git
我在 GitHub 上创建了一个 repo。从网站创建了一个新分支(名为“anythingslider”)。 然后: cd /home/multiformeingegno git clone git@
我镜像了一个 git 存储库并删除了 application.properties包含来自 MyProject 的密码存储库。我可以看到 Deleted files 下的消息和我的文件名如下: $ j
考虑以下存储库。它有很多团队成员的私有(private)分支,都在 refs/heads/team/ 命名空间下,我不想获取,但我仍然想获取所有其余部分,包括任何可能是在 team 命名空间之外新创建
我正忙着整合 Jenkins 和 TFS。我第一次不成功的尝试是使用 Jenkins 的多分支管道设置和 TFS。因此,我的第二次尝试是使用带有参数的单个 Jenkins 构建来指定要构建的分支。 我
在当前的 Git 上,git push --force-with-lease origin +somebranch 和 git push --force-with-lease origin someb
我和几个 friend 在 GitLab 有个项目,当然有 master 分支,还有一些其他的。当我克隆存储库时,我还使用命令 git remote add upstream ... 创建了一个上游。
我在 cloufforge 上设置了一个新的 Git 存储库,但遇到了一些不寻常的问题。 When I do a git pull origin master From https://dndigit
如何通过单个命令获取有关 gerrit 更改的最新 refspec。我需要输出为“refs/changes/11/1234/4”。是否有相同的 git 命令 我知道结合 gerrit 查询和一些脚本的
Refspec 和 Branch specifier(默认为空) 有什么区别:在下面的 Jenkins 作业配置中: 我尝试在作业配置中设置 Refspec 选项: +refs/heads/maste
我从主分支创建了一个功能分支,并向我的分支添加并提交了一些更改。 现在我想把我的工作推送到远程仓库,但是失败了。我能做些什么来解决这个问题?谢谢。 当运行 git push 命令时,它没有询问我的密码
看来很多人已经用 git init && git fetch 组合替换了 git clone。这看起来相当愚蠢,不幸的是像 Jenkins 这样的工具不会为你做这件事。那么,为什么 git clone
这个问题在这里已经有了答案: Message 'src refspec master does not match any' when pushing commits in Git (128 个答案
使用 refspec 是一种获取远程分支并创建类似但具有给定名称的分支的便捷方法(或者反过来:创建一个具有与本地名称不同的给定名称的远程分支)。我对一件小事感到困惑——因为 pull 也会与当前分支
我已经使用我的 GitHub 帐户在 https://github.com/darKoram/sphero_tracker.git .到目前为止,它只包含一些 wiki 页面,但我已准备好上传我的代码
这个问题在这里已经有了答案: Message 'src refspec master does not match any' when pushing commits in Git (126 个答案
我是一名优秀的程序员,十分优秀!