How do I fix missing git remote details?

2019-02-06 10:16发布

Some repository clones I have allow me to do this:

% git pull
% git push

But other repositories require me to type:

% git pull origin master
% git push origin master

I think I am missing something in the latter case - does anyone know what is (not) going on here? I am using the latest git version, just obviously not using it well.

3条回答
放我归山
2楼-- · 2019-02-06 10:53

Also, to avoid having to do git push master, you can specify what branches to push in your Git config file, like so:

[remote "origin"]
        ...
        push = master
查看更多
一夜七次
3楼-- · 2019-02-06 11:00

If you cd into your repository directory and then open up your .git/config file in an editor.

Append this to the end of the file:

[branch "master"]
     remote = origin
     merge = refs/heads/master

This is pretty much just an alias so git knows by default to pull from origin master.

查看更多
对你真心纯属浪费
4楼-- · 2019-02-06 11:06

Or if you prefer, you can do the same thing Brian Gianforcaro proposed from the command line:

git config branch.master.remote origin
git config branch.master.merge  refs/heads/master
查看更多
登录 后发表回答