Git "You asked me to pull without telling me which branch"

Posted Thursday, 17 September 2009 at 22:37 by Andrew Liu
Tagged: Git | web development
Read more blogs...

 

Git pull yields this response: "You asked me to pull without telling me which branch..."

After a few attempts, this becomes quite annoying.  What do you do to fix it?

 

There are a few ways to solve this.


1. Delete and re-create the repository with "git clone <repo>". When I looked in the .git/config file in the newly cloned repository, I saw these magic settings:

 

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

 

2. Of course, now that you know, you can hand edit this file yourself.

 

3. Or you can do it the 'git' way, properly

 

git config --list

 

Shows you the current configuration settings.

What you need to do is:

 

git config branch.master.remote origin
git config branch.master.merge=refs/heads/master

Web News

Combine Ajax and JSON to Transmit Complex Presentation Data
Learn how to combine Ajax and JSON to override the browser's default locale and perform retrievals of complex data.
2010-09-01T07:04

Ten Tools Web Developers Can't Live Without
What are the 10 open source and online tools that all Web developers should have in their toolboxes? Here's one developer's list of must-haves.
2010-08-25T12:56:04-04:00

Implementing Flexible Website Navigation with WordPress 3.0
WordPress 3.0 allows you to build a flexible navigation system easily using custom menus and just a few lines of code.
2010-08-23T07:04

Setting Up the All-in-One SEO Pack for WordPress
Like every website, your WordPress blog has to be optimized for search engines. The All in One SEO Pack plugin is a one-stop shop for most of the SEO tweaks you need to make.
2010-08-18T15:34:34-04:00

Add Multilingual Support to Your Java Web Pages
Give your Web visitors the option of selecting their preferred languages using JavaScript, Ajax, Java Servlets and JSPs.
2010-08-16T15:19:46-04:00

Company Blog


"sm bus" drivers missing in Device Manager

Posted Thursday, 18 March 2010 at 20:51 by Andrew Liu


When installing a new Windows XP installation, I seemingly always miss some drivers. One that troub...

Read more...



Link Building SEO Strategies

Posted Monday, 08 March 2010
Updated Tuesday, 09 March 2010 at 02:09 by Andrew Liu


Link building might be a necessary step for your search engine optimisation campaign, but very few p...

Read more...



Multiple Domains for SEO performance?

Posted Friday, 05 March 2010 at 23:13 by Andrew Liu


Online businesses and websites that cover a broad range of topics or one large topic are sometimes b...

Read more...



Tag Clouds - SEO or not?

Posted Thursday, 04 March 2010 at 04:34 by Andrew Liu


A tag cloud or word cloud is a visual depiction of tags or words related to a site, typically used t...

Read more...



Mozilla Thunderbird and Gmail IMAP Attachments Bug

Posted Wednesday, 03 March 2010 at 20:15 by Andrew Liu


I've been using Gmail since its early inception, and I was one of the first to utilise Gmail's IMAP ...

Read more...



Read more blogs...