Re: Git command for fetching the current master

2016-10-14 Thread Richard Heck
On 10/14/2016 10:01 AM, racoon wrote: > On 14.10.2016 15:50, Scott Kostyshak wrote: >> On Fri, Oct 14, 2016 at 02:10:18PM +0200, racoon wrote: >>> Thanks. Unfortunately, the final step "git pull" gives me this: >>> >>> There is no tracking information for the current branch. >>> Please specify

Re: Git command for fetching the current master

2016-10-14 Thread racoon
On 14.10.2016 15:50, Scott Kostyshak wrote: On Fri, Oct 14, 2016 at 02:10:18PM +0200, racoon wrote: Thanks. Unfortunately, the final step "git pull" gives me this: There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for

Re: Git command for fetching the current master

2016-10-14 Thread Scott Kostyshak
On Fri, Oct 14, 2016 at 02:10:18PM +0200, racoon wrote: > Thanks. Unfortunately, the final step "git pull" gives me this: > > There is no tracking information for the current branch. > Please specify which branch you want to merge with. > See git-pull(1) for details. > > git pull > > If

Re: Git command for fetching the current master

2016-10-14 Thread racoon
Thanks. Unfortunately, the final step "git pull" gives me this: There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull If you wish to set tracking information for this branch you can do so with:

Re: Git command for fetching the current master

2016-10-14 Thread Joel Kulesza
I'm not part of the development team; however, my thoughts: Command-line wise from the LyX directory, check your settings to make sure they are to the right place with with git remote -v Once satisfied (and with any of your changes stashed or committed), try git checkout master git fetch git

Git command for fetching the current master

2016-10-14 Thread racoon
Hi, How do I update my local copy to the current master? In git gui I tried Fetch from > origin But this seems not to work. I can now type any git command line commands using Repository > Git Bash So I am even happy about command line commands on how to update to the current master.