如何防止git跟踪新分支到父本地分支?

时间:2015-07-08 12:53:15

标签: git

今天我的git决定在git checkout -b时自动跟踪父本地分支。例如:

(master) $ git checkout -b test
Branch test set up to track local branch master.
Switched to a new branch 'test'
(test) $

为什么突然这样做?我在任何其他系统上都没有这个问题,我最近没有修改过我的.gitconfig文件。 我将我的git版本从1.9.1更新到2.4.5,同样的事情发生了。

1 个答案:

答案 0 :(得分:2)

阅读完成后,我发现罪魁祸首实际上是

public DAO() {
   env = new Hashtable<String, String>();
   env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
   env.put(Context.PROVIDER_URL, "ldap://localhost:1389");
   env.put(Context.SECURITY_AUTHENTICATION, "simple");
   env.put(Context.SECURITY_PRINCIPAL, "cn=Directory Manager");
   env.put(Context.SECURITY_CREDENTIALS, "secret");
}

在我的.gitconfig中。

我甚至不记得为什么我首先添加了这个选项。