Re: Git diff|status against remote repo

2019-09-16 Thread Stefanie Leisestreichler
Am 16.09.19 um 12:45 schrieb Pratyush Yadav: On 16/09/19 11:02AM, Stefanie Leisestreichler wrote: Hi. I am far from being a pro in git. There is something I do not understand. This is my git config: [core]     repositoryformatversion = 0     filemode = true     bare = false

Git diff|status against remote repo

2019-09-16 Thread Stefanie Leisestreichler
Hi. I am far from being a pro in git. There is something I do not understand. This is my git config: [core]     repositoryformatversion = 0     filemode = true     bare = false     logallrefupdates = true [remote "origin"]     url = ssh://git@192.168.2.2:/home/git/PROJECT.git

Git Tags

2018-11-29 Thread Stefanie Leisestreichler
Hi. I have done this (on box A): git commit -m "Message" git tag -a 0.9.0 git push origin master In my local repository, when I run "git tag" it is showing me "0.9.0". Then I did (on box B) git clone ssh://user@host:/path/project.git cd project git tag Now git tag is showing nothing. Why is