- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在分支上工作,将其命名为mybranch
。我不修改master
。
我想在origin/feature/mybranch
上推送更改,但是我有一些问题。奇怪的是我已经做过几次了,而且没有任何问题。
$ git branch
develop
* feature/mybranch
master
$ git push
To http://......
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'http://....'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. If you did not intend to push that branch, you may want to
hint: specify branches to push or set the 'push.default' configuration variable
hint: to 'simple', 'current' or 'upstream' to push only the current branch.
master
。
$ git checkout master
Switched to branch 'master'
Your branch is behind 'origin/master' by 2 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)
$ git pull
Updating 45c7319..f6b8e97
error: Your local changes to the following files would be overwritten by merge:
platform/....java
services/....java
...
Please, commit your changes or stash them before you can merge.
Aborting
$ git status
# On branch master
# Your branch is behind 'origin/master' by 2 commits, and can be fast-forwarded.
# (use "git pull" to update your local branch)
#
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: platform/....java
# modified: algorithms/....java
# ...
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# algorithms/.../
# and over 1100 files in bin folder. I don't know why gitignore doesn't work now.
$ git checkout -f
Your branch is behind 'origin/master' by 2 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)
master
中仍然有这些奇怪的变化...
最佳答案
第1部分:完成推送而无需担心master
(注意:实际上,它已经完成了。请参阅第1部分底部的注释。)
您正在运行的git push
没有其他参数。
如果您使用另外两个参数运行git push
,则它们将确切指定要推送到哪里。 git文档将它们称为<repository>
和<refspec>
。
在您的情况下,存储库始终为origin
(这是您克隆某些内容时git设置的通常标准)。因此,refspec
是更有趣的部分。
这是long1形式:
git push origin feature/mybranch:feature/mybranch
feature/mybranch
,告诉远程
origin
,它也应该在其一侧更新分支
feature/mybranch
。
:<same-name>
部分,则默认为使用冒号左侧的分支名称,因此:
git push origin feature/mybranch
<refspec>
时会发生什么?答案在
git push和
git config文档中,尽管在我的1.8.4.3文本版本中确实很难阅读,而且我上面链接的在线版本如果有的话,更糟糕::-)
remote.origin.push
或
push.default
,所以您得到的是“默认默认值”,称为
matching
,这意味着您的
git push
在隐喻的互联网电话上调用
origin
并说
master
和
feature/mybranch
。
master
应该是的,这也是我认为
feature/mybranch
应该是的。
master
退了几转!
! [rejected] master -> master (non-fast-forward)
的时候。
push
输出可用,则应该可以看到类似以下内容:
a430f6d..676699a feature/mybranch -> feature/mybranch
! [rejected] master -> master (non-fast-forward)
master -> master
的更改被拒绝,但
feature/mybranch -> feature/mybranch
的更改也被接受。您想推送的分支,您做到了!您刚刚收到了这个令人讨厌的错误消息,它伴随着成功(现在您想知道如何处理分支
master
)。
push
中明确
git push origin feature/mybranch
feature/mybranch
进行了一些更新”。您在
master
上落后的事实将是无关紧要的。您,您的Git和远程Git都不会出现在那里。
push.default
git config --global push.default simple
matching
经常会比帮助有用多烦人。新的“默认默认值”将为
simple
。 (有关这意味着什么的详细信息,请参见
the git config documentation。)
--global
版本将更改您的默认默认设置,但不会更改其他用户的默认默认设置。如果任何存储库(您自己的存储库或其他存储库)具有本地
push.default
设置,它将覆盖您的个人全局设置,而对于那些没有的存储库,您的全局设置就是git会使用的设置。您可以选择改为在每个存储库中设置本地设置,这会影响您以及使用您自己的存储库的其他任何人,但是您需要记住在所有存储库中进行设置)
refs/heads/
以使其更长。那只是为了炫耀。 :-)
remote.origin.push
和
push.default
的人可能已经知道所有这些内容。
master
为什么不更新?
.java
二进制文件提交给
master
分支,可能是由于没有正确的
.gitignore
造成的。
.gitignore
并提交了该文件,但实际上可能并没有全部对它们进行
git rm --cached
,因此仍在跟踪中。如果以前提交了现在被列为“忽略”的文件,则git“遵循该提交”而不是“ignore”指令,您会得到很多:
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: bin/b1
git add
的方式以及
.gitignore
中的内容,可以添加存储库中跟踪的文件(覆盖了ignore条目),并使它们“已暂存以提交”并提交它们。
master
落后两个版本,并且肯定包含一些二进制文件,并且您的
feature/mybranch
分支可能包含“错误”的
.gitignore
(它的某些变化形式),并且它也不会忽略二进制文件的“正确集合” 。
master
分支上签入的内容不匹配。这些将被“不安全地”破坏(至少,就git所知)。如果/当您执行
git checkout -f master
(或类似的操作)时,git毕竟会破坏它们,但是您仍然留下“未跟踪”的文件,这意味着
.gitignore
不好。
master
重新同步到
origin/master
了:
git checkout -f master
git fetch # resync with origin in case they've fixed more stuff
git reset --hard origin/master
.gitignore
文件并确保它们正确无误-您可能需要修复一些文件。然后,使用
git ls-files
和/或
git ls-tree
查看索引和存储库中的内容(
git ls-tree
要求您指定特定的树对象,例如
git ls-tree HEAD:bin
,以查看
bin
树中的内容(如果存在)。
bin
中的所有内容:
git rm --cached -r bin
--cached
说仅删除索引中的内容),或者您可以允许git删除二进制文件。一旦您拥有正确的东西“git rm” -ed并添加了任何更新的
.gitignore
文件,就用
git commit
进行更改:
$ cat bin/.gitignore
*
!.gitignore
$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# new file: bin/.gitignore
# deleted: bin/b1
# deleted: bin/b2
#
$ git commit -m 'remove binaries, ignore them in the future'
[master ac60888] remove binaries, ignore them in the future
3 files changed, 1 insertion(+)
create mode 100644 bin/.gitignore
delete mode 100644 bin/b1
delete mode 100644 bin/b2
.java
二进制文件,或者您不想这样做,但是还没有人修复任何
.gitignore
条目,等等;所以这就是为什么我对此不太确定的原因。)
关于git - 由于主服务器中的异常更改,无法推送分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20444748/
我听说过两种数据库架构。 大师级 主从 master-master不是更适合现在的web吗,因为它就像Git一样,每个单元都有整套数据,如果一个宕机也无所谓。 主从让我想起了 SVN(我不喜欢它),你
我们当前将 MySQL 配置为支持故障转移:Site1 Site2。当它们被设置为主/主时。在给定时间点,应用程序服务器仅主动写入一个站点。我们想要设置一个新的故障转移站点。然后我们将拥有 Site
我听说过两种数据库架构。 大师-大师 主从 master-master 不是更适合当今的网络吗,因为它就像 Git,每个单元都有整套数据,如果其中一个发生故障,也没关系。 主从让我想起 SVN(我不喜
我正在创建一个标记为类别的表,其中主类别(父列)包含 0,子类别包含父类别的 ID。我听说这叫引用。我的问题:这张表的结构正确吗?或者是否有更好的方法,例如实现遍历树或类似方法? CREATE TAB
我正在阅读一份关于 C++ 与 C 的文档。该文档说与 C 相比,C++ 编写得非常紧凑。一个例子是,C 允许 main() 函数类型为 void。另一方面,C++ 不允许这样做,他给出了标准中的以下
C main函数和Java main函数有什么区别? int main( int argc, const char* argv[] ) 对比 public static void main(Strin
我一直摸不着头脑,但运气不好。设计器有一个包含 3 栏的站点、两个侧边栏和一个主要内容区域。 专为桌面设计,左栏、主要内容、右栏。但是,在较小的设备上,我们希望首先堆叠主要内容。 所以通常情况下,你可
我一直在阅读有关 Jenkins 主/从配置的信息,但我仍然有一些问题: 是不是真的没有像 Jenkins 主站那样安装和启动从站 Jenkins?我假设我会以相同的方式安装一个主 Jenkins 和
据我了解,Viemodel中MVVM背后的概念包括业务逻辑和/或诸如暴露于 View 的数据的主/明细关系之类的事物 因此,正如我发现的那样,有很多ORM生成器,例如模型的telerik a.o以及另
我们有一个群集,其中包含3个主分区,每个主分区有2个副本。主/副本分片的总文档数相同;但是,对于同一查询/文档,我们得到3个不同的分数。当我们将preference = primary添加为查询参数时
我有一个非常大/旧/长时间运行的项目,它使用相对于启动目录的路径访问文件资源(即应用程序仅在从特定目录启动时才工作)。当我需要调试程序时,我可以从 eclipse 启动它并使用“运行配置”->->“工
谁能向我解释一下为什么我在这段代码上遇到段错误?我一直试图弄清楚这一点,但在各种搜索中却一无所获。当我运行代码而不调用 main(argc, argv) 时,它会运行。 Slave 仅将 argv 中
使用 xcode 中的默认项目作为主从应用程序,如果我在折叠委托(delegate)中放置 print 调试语句,当我旋转设备时它似乎永远不会被触发(事实上我永远无法触发它)。 我编辑的代码位于 Ap
是否有任何产品可以使 mysql 主/从故障转移过程更容易?一些可以自动发生的事情,而不是手动修复它。 最佳答案 [...稍后...;) 你所说的“更容易”是什么?MySQL 有很多解决方案: MyS
我有两个 mysql 数据库。我想做主/主复制。 复制以一种方式进行。然而,反过来说却不然。该错误表明它无法与用户“test@IPADDRESS”连接。 如何将用户名更改为 repl?从未进行过测试,
我正在尝试在 MySQL 中运行以下查询: GRANT REPLICATION SLAVE ON *.* TO 'replication'@’10.141.2.%’ IDENTIFIED BY ‘sl
我正在尝试使用 Android 提供的主/详细流程模板创建一个应用程序,并且我正在尝试将多个操作栏菜单项添加到操作栏的主要部分和详细信息部分。这就是我要实现的目标: (来源:softwarecrew.
我正在寻找一个跨平台的 C++ master/worker 库或工作队列库。一般的想法是我的应用程序将创建某种任务或工作对象,将它们传递给工作主机或工作队列,这将依次在单独的线程或进程中执行工作。为了
我似乎看到很多人在他们的 MySQL 模式中任意分配大尺寸的主/外键字段,例如 INT(11) 甚至 WordPress 使用的 BIGINT(20)。 如果我错了,请纠正我,但即使是 INT(4)
如果我有一个可以与多个键相关联的用户,正确的表设置应该是: 一个表有两列,例如: UserName | Key 没有主键且用户可以有多行,或者: 具有匹配标识符的两个表 Table 1 Us
我是一名优秀的程序员,十分优秀!