Re: Usability outrage as far as I am concerned

2017-12-22 Thread Anatolii Borodin
Hi Jacob,

On Sat, Dec 23, 2017 at 12:05 AM, Jacob Keller <jacob.kel...@gmail.com> wrote:
> If you wish to update it later, you can mount hte usb stick, and then
> just run git pull from inside the new subfolder. Note that you do
> *not* run "git pull home_subfolder", as git pull expects the name of a
> remote, which in this case is just origin (since the default remote
> name you clone from is origin)

>From git-fetch(8):

   
   The "remote" repository that is the source of a fetch or
pull operation.
   This parameter can be either a URL (see the section GIT URLS below)
   or the name of a remote (see the section REMOTES below).

You can run git fetch / git pull with a URL or a local path to a
repository, not only origin etc.


-- 
Mit freundlichen Grüßen,
Anatolii Borodin


Re: Please fix the useless email prompts

2017-08-20 Thread Anatolii Borodin
Hi Andrew,

On Sun, Aug 20, 2017 at 2:40 PM, Andrew Ardill <andrew.ard...@gmail.com> wrote:
> Maybe I am missing something obvious, but if that's the case then
> can't we just do the identity check when trying to make new commits,
> in which case you should be able to pull without setting your
> identity?

`git pull` is `git fetch + git merge / git rebase` in disguise, so we
should be ready if git will want to create a merge commit or do a
rebase automatically (and potentially create new commits with
`Committer` set to the current user). `git fetch` and `git clone`
alone, `git branch`, `git checkout` etc don't care about the email (as
of 2.14.1), even if `user.useConfigOnly` is set to `true`.


-- 
Mit freundlichen Grüßen,
Anatolii Borodin


Re: Please fix the useless email prompts

2017-08-20 Thread Anatolii Borodin
Hi Jeffrey,


On Sat, Aug 19, 2017 at 5:10 PM, Jeffrey Walton <noloa...@gmail.com> wrote:
> *** Please tell me who you are.

Which version of git do you use? Do you have user.useConfigOnly set to
true anywhere in the config files?

-- 
Mit freundlichen Grüßen,
Anatolii Borodin