git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* What does this mean
@ 2009-07-21 15:59 wkcochran123
  2009-07-21 16:42 ` Michał Kiedrowicz
  0 siblings, 1 reply; 3+ messages in thread
From: wkcochran123 @ 2009-07-21 15:59 UTC (permalink / raw)
  To: git


runge:~/repository/papers wkcochra$ git checkout
D       medial axis/medial axis.tcp

A search of ^D through user-manual.txt yields nothing.

-- 
View this message in context: http://www.nabble.com/What-does-this-mean-tp24590563p24590563.html
Sent from the git mailing list archive at Nabble.com.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: What does this mean
  2009-07-21 15:59 What does this mean wkcochran123
@ 2009-07-21 16:42 ` Michał Kiedrowicz
       [not found]   ` <19350ccb0907211002p2b56aaabnaca905bef133da71@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Michał Kiedrowicz @ 2009-07-21 16:42 UTC (permalink / raw)
  To: wkcochran123; +Cc: git

wkcochran123 <wkcochran@gmail.com> wrote:

> 
> runge:~/repository/papers wkcochra$ git checkout
> D       medial axis/medial axis.tcp
> 
> A search of ^D through user-manual.txt yields nothing.
> 

'git checkout' command switches to another branch (actually, because
nothing was specified on command line, it doesn't switch at all) and
prints a summary of modified files.

For description of 'D', look for '--name-status' option in man git-diff.
Maybe this what you are looking for.

http://www.kernel.org/pub/software/scm/git/docs/git-diff.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: What does this mean
       [not found]   ` <19350ccb0907211002p2b56aaabnaca905bef133da71@mail.gmail.com>
@ 2009-07-21 17:35     ` Michał Kiedrowicz
  0 siblings, 0 replies; 3+ messages in thread
From: Michał Kiedrowicz @ 2009-07-21 17:35 UTC (permalink / raw)
  To: Bill Cochran, Git Mailing List

Bill Cochran <wkcochran@gmail.com> wrote:

> Thanks for the quick answer.  I can fix this problem by having a
> clone of the repository on the same machine.  I am just curious if
> the behavior I am seeing is correct.
> 
> > runge:~/repository/papers wkcochra$ git checkout
> > D       medial axis/medial axis.tcp
> 
> 'git checkout' command switches to another branch (actually, because
> > nothing was specified on command line, it doesn't switch at all) and
> > prints a summary of modified files.
> >
> 
> On machine A, I created a directory and file.  This was committed to
> `master.'  The repository was pushed to machine B.  What you are
> looking at is the subsequent checkout on machine B.  Said directory
> and file are medial axis/medial axis.tcp.  The checkout did not
> create the directory nor the file.  Rather, I get the result above.
> 
> git show informs me I am at the correct commit.  git checkout "medial
> axis" fails:
> runge:~/repository/papers wkcochra$ git checkout "medial axis"
> error: pathspec 'medial axis' did not match any file(s) known to git.
> 
> Is this the correct behavior of checkout?
> 
> 
> > For description of 'D', look for '--name-status' option in man
> > git-diff. Maybe this what you are looking for.
> >
> 
> So, this file is deleted, according to the man page of git-diff.
> Interesting that it was never created on machine B.
> 
> 

I think I managed to reproduce your problem. Here is what I did:

> $ git push ../b master
> Counting objects: 4, done.
> Writing objects: 100% (4/4), 283 bytes, done.
> Total 4 (delta 0), reused 0 (delta 0)
> Unpacking objects: 100% (4/4), done.
> warning: updating the current branch
> warning: Updating the currently checked out branch may cause confusion,
> warning: as the index and work tree do not reflect changes that are in HEAD.
> warning: As a result, you may see the changes you just pushed into it
> warning: reverted when you run 'git diff' over there, and you may want
> warning: to run 'git reset --hard' before starting to work to recover.

This seems to be your case. You see a file as deleted, because in another repo
you have created.

> warning: 
> warning: You can set 'receive.denyCurrentBranch' configuration variable to
> warning: 'refuse' in the remote repository to forbid pushing into its
> warning: current branch.
> warning: To allow pushing into the current branch, you can set it to 'ignore';
> warning: but this is not recommended unless you arranged to update its work
> warning: tree to match what you pushed in some other way.
> warning: 
> warning: To squelch this message, you can set it to 'warn'.
> warning: 
> warning: Note that the default will change in a future version of git
> warning: to refuse updating the current branch unless you have the
> warning: configuration variable set to either 'ignore' or 'warn'.
> To ../b
>  * [new branch]      master -> master
> 
> $ cd ../b/
> $ git checkout 
> D	medial axis/medial axis.tcp

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-07-21 17:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-21 15:59 What does this mean wkcochran123
2009-07-21 16:42 ` Michał Kiedrowicz
     [not found]   ` <19350ccb0907211002p2b56aaabnaca905bef133da71@mail.gmail.com>
2009-07-21 17:35     ` Michał Kiedrowicz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).