Re: How to pull force just one folder in dev tree?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: "Junio C Hamano" <gitster@xxxxxxxxx>
To: "J.V." <jvsrvcs@xxxxxxxxx>
Cc: <git@xxxxxxxxxxxxxxx>
Sent: Tuesday, June 05, 2012 7:35 PM
Subject: Re: How to pull force just one folder in dev tree?


"J.V." <jvsrvcs@xxxxxxxxx> writes:

If I am in my source code tree down deep in a directory at the
command
line, how do I pull from a repo and force overwrite all files locally
(and also get files that I deleted locally, just in the folder I am
in?)

I think the particular command for this case would be
   git checkout [-p|--patch] [<tree-ish>] [--] [<paths>.]
where the paths are defined as a pathspec (see git glossary for
details).

Though you should review how you got into this sticky situation and
consider  how you would adjust your workflow so you don't repeat the
problem.
e.g. creating a temporary branch earlier, with more commits or stashes.


I do not want to do this for the entire repo, just the directory that
I am in and also on the branch I am in.  I am not in the 'master'
branch, but another branch.

so

 $git reset --hard HEAD

 Would probably do my entire local repo and from 'master' (even if I
am not on master)?

No. It asks "Please reset the index and the working tree files to
match what I have in the commit I checked out".  If you are on the
'slave' branch, the index and the working tree files are updated to
match the commit at the tip of the 'slave' branch.

It is unclear what you are trying to do, but if you made random
changes in files in your current directory (somewhere deep), all
changes are crap and you regret making them, and you are wishing to
go back to the state you started from, then the way to ask "I want
everything in this directory checked out from my current branch" is
to say:

$ git checkout HEAD -- .

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


-----
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2012.0.2178 / Virus Database: 2433/5048 - Release Date:
06/05/12


--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]