Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-31 Thread dexter ietf
On Tuesday, July 28, 2015 at 12:01:36 AM UTC+5:30, Konstantin Khomoutov wrote: On Sun, 26 Jul 2015 22:52:21 -0700 (PDT) dexter ietf dexte...@gmail.com javascript: wrote: git pull is actually the same as if you write git fetch and then Hi Konstantin, Thanks for the detailed reply. it

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-27 Thread John McKown
On Mon, Jul 27, 2015 at 1:06 AM, Gergely Polonkai gerg...@polonkai.eu wrote: It is quite rare to see someone doing such operations on the bare repository. Instead, you should do the fetch+merge (aka pull) or fetch+rebase on your local repo (non-bare), and push it back to the bare repository.

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-27 Thread Konstantin Khomoutov
On Sun, 26 Jul 2015 22:52:21 -0700 (PDT) dexter ietf dexter.i...@gmail.com wrote: git pull is actually the same as if you write git fetch and then git merge. git-fetch doesn't update anything in your working directory, it just download the changes from the remote. Think about it as if I

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-27 Thread Gergely Polonkai
It is quite rare to see someone doing such operations on the bare repository. Instead, you should do the fetch+merge (aka pull) or fetch+rebase on your local repo (non-bare), and push it back to the bare repository. Some personal note: I have tons of repositories on my home machine, all of which

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-26 Thread dexter ietf
On Friday, July 24, 2015 at 5:08:00 PM UTC+5:30, Gergely Polonkai wrote: git pull is actually the same as if you write git fetch and then git merge. git-fetch doesn't update anything in your working directory, it just download the changes from the remote. Think about it as if I ask you what

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-24 Thread dexter ietf
On Thursday, July 23, 2015 at 8:12:45 PM UTC+5:30, Konstantin Khomoutov wrote: On Thu, 23 Jul 2015 06:44:41 -0700 (PDT) dexter ietf dexte...@gmail.com javascript: wrote: That's almost zero information in your problem statement. ok, the remote repo from which i cloned the bare repo has

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-24 Thread Gergely Polonkai
git pull is actually the same as if you write git fetch and then git merge. git-fetch doesn't update anything in your working directory, it just download the changes from the remote. Think about it as if I ask you what did you change in the code? You tell me, but I don't apply it to my version

[git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-23 Thread dexter ietf
Hi, i have a bare repo, when i do a git fetch, the remote tags are not getting updated, though the 'fetch command' runs successfully. please shed some light. thanks. -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-23 Thread Konstantin Khomoutov
On Thu, 23 Jul 2015 06:44:41 -0700 (PDT) dexter ietf dexter.i...@gmail.com wrote: i have a bare repo, when i do a git fetch, the remote tags are not getting updated, though the 'fetch command' runs successfully. please shed some light. thanks. That's almost zero information in your problem