From: "Torsten Bögershausen" <tboegi@web.de>
To: git@vger.kernel.org
Subject: Re: Why is there no force pull?
Date: Sun, 10 Jun 2018 18:11:53 +0200 [thread overview]
Message-ID: <20180610161153.GA27202@atze2.lan> (raw)
In-Reply-To: <20180609190154.yl4ig6dxfihgm5qi@christoph-lap>
On Sat, Jun 09, 2018 at 09:01:54PM +0200, Christoph Böhmwalder wrote:
> Hi,
>
> Since this is a use case that actually comes up quite often in
> day-to-day use, especially among git beginners, I was wondering: is
> there a specific reason why a command like "fetch changes from remote,
> overwriting everything in my current working directory including all
> commits I've made" doesn't exist? Now, I'm quite aware that something
> like
>
> $ git fetch origin/branch
> $ git reset --hard origin/branch
This is not exactly what you askeded for, but I tend not to recommend
people using "git reset --hard" at all.
Either use a "stash", just in case.
Or, in your case:
$ git fetch origin && git checkout origin/branch
This will put your working tree onto origin/branch.
As a bonus, in case that you have done commits, which are now no longer
visible, "git reflog" is typically able to find them.
prev parent reply other threads:[~2018-06-10 16:08 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-09 19:01 Why is there no force pull? Christoph Böhmwalder
2018-06-09 20:04 ` Elijah Newren
2018-06-09 20:25 ` Christoph Böhmwalder
2018-06-09 20:30 ` Ævar Arnfjörð Bjarmason
2018-06-10 16:11 ` Torsten Bögershausen [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180610161153.GA27202@atze2.lan \
--to=tboegi@web.de \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).