Updating local tags: bugs and general feasibility

2019-06-19 Thread Karen Arutyunov
Hello, I'm trying to configure my git client to update local tags with the remote ones. Prior to git 2.20 the following option in ~/.gitconfig did the job: [remote "origin"] tagopt = --tags So the following commands worked as expected and the local tag gets updated: # Create remote

advertised commit fetch using commit id fails

2019-06-14 Thread Karen Arutyunov
Hello, git 2.22, in contrast to previous versions, fails to fetch advertised commit using commit id: $ git --version git version 2.22.0 $ git init git $ git -C git remote add origin https://github.com/git/git $ git ls-remote https://github.com/git/git | grep v2.21 2bb64867dc05d9a8432488ddc1d

git worktree add verbosity

2018-08-05 Thread Karen Arutyunov
Hello, We are using git for automation in our build2 project. What's quite inconvenient is that the 'git worktree add' command prints some output by default and there is no way to suppress it, as it normally can be achieved with the --quiet option for the most of git commands. Could you add

git worktree add prints to stdout

2018-08-05 Thread Karen Arutyunov
Hello, The 'git worktree add' command prints to both standard streams. So in the following example the first line is printed to stderr and the second to stdout. $ git worktree add ../pub build2-control Preparing ../pub (identifier pub) HEAD is now at b03ea86 Update This looks like a bug, as,