Thread (5 messages) flat view 5 messages, 3 authors, 2016-06-15

Re: Question regarding: git pull --no-commit origin

From: Jeff King <hidden>
Date: 2016-06-15 22:43:01

On Mon, Mar 26, 2007 at 10:46:09AM +0930, Geoff Russell wrote:
If --no-commit won't let me do this then perhaps I need something like:

         git pull origin:testing
         git checkout testing
          .... test
         git checkout master ; git pull . testing
Close.  Remember that a pull is basically a fetch + merge; so your first
command is just the fetch:

  # fetches everything from origin
  git fetch
  # see what they have that we don't
  git whatchanged HEAD..origin/testing
  # check out their code in more detail
  git checkout origin/testing
  # or even make our own branch in case we have tweaks to make
  git checkout -b testing origin/testing
  # and once we're OK, do the merge
  git checkout master; git merge origin/testing

All of that assumes git 1.5 or greater, which uses the separate remote
layout and has some interface improvements. For older versions, their
'testing' branch will be pulled into your 'testing' branch, and I
believe you will need to 'git pull . testing' to merge it.

-Peff
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help