* Bram Moolenaar <[email protected]> [2015-03-24 23:36 +0100]: > > Elimar Riesebieter wrote: [...] > > The tags don't seem to correspond to the latest patch version? > > I do have the tags in my local git repository. Do they not get pushed > to the repository with "git push" ? v7-4-678 would be the last one that > was imported, the patches after that I pushed from my git repository.
There are two more methods of "pushing" in git: $ git help commit $ git help tag git commit -a -m "patch 6.4.678" --gpg-sign="your key" git git config --global user.signingkey "your key" git tag -s v7-4-682 -m "patch 7.4.682: The search highlighting and \ match highlighting replaces the cursorline highlighting, this \ doesn't look good." Elimar -- Do you smell something burning or is it me? -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
