On Nov 20, 2013 9:36 AM, "Éloi Rivard" <[email protected]> wrote: > > Can you try: > git push --tags origin
This did not give me an error but when I pulled from anonymous git and checkout the tag and fetched tags, I did not see my change! Jeremiah > > > > 2013/11/19 Jeremiah Benham <[email protected]> >> >> >> >> >> On Tue, Nov 19, 2013 at 10:08 AM, Éloi Rivard <[email protected]> wrote: >>> >>> Oops I forgot the step where you should remove the tag from the origin repository. >>> Before you push, try to run: >>> git push origin --delete -r1.1.0 >>> >> >> That did not work. git push origin --delete r1.1.0 seemed to work though. When I tried to push it though I got the same error: >> >> error: src refspec r1.1.0 matches more than one. >> error: failed to push some refs to '[email protected]: /srv/git/denemo.git' >> >> Jeremiah >>> >>> >>> 2013/11/19 Jeremiah Benham <[email protected]> >>>> >>>> >>>> >>>> >>>> On Tue, Nov 19, 2013 at 7:49 AM, Éloi Rivard <[email protected]> wrote: >>>>>> >>>>>> I still don't know how to change a file in a tag and commit it and have that change. If I update the tagging wont it include all other commits since the tag has been created? >>>>> >>>>> >>>>> A tag points to a commit, but except the initial commit of a repository, every commit has a parent. Tags does not prevent you to access parent commits. >>>>> >>>>> >>>>>> What are a commands to make a change and have it only affect the r1.1.0 tag. >>>>> >>>>> >>>>> Everything is here: http://denemo.org/maintainer-page/ >>>>> >>>> >>>> Ok. I just did this: >>>> git pull >>>> git fetch --tags >>>> git checkout -b r1.1.0 >>>> vim configure.ac >>>> git commit -m "set version to 1.1.0" configure.ac >>>> git tag -a r1.1.0 -f -m "set version to 1.1.0" >>>> git push origin r1.1.0 >>>> >>>> Then I get this error: >>>> error: src refspec r1.1.0 matches more than one. >>>> error: failed to push some refs to '[email protected]: /srv/git/denemo.git' >>>> >>>> I tried this with and without the line with "git commit" but still got the same error. What am I doing wrong? >>>> >>>> Jeremiah >>>> >>>> >>>> >>>>>> >>>>>> This commit should also be the only commit added to the tag. The tag dhould not point update to point at last commit or current master. >>>>> >>>>> >>>>> What do you mean ? >>>> >>>> >>> >>> >>> >>> -- >>> Éloi Rivard - [email protected] >>> >>> « On perd plus à être indécis qu'à se tromper. » >> >> > > > > -- > Éloi Rivard - [email protected] > > « On perd plus à être indécis qu'à se tromper. »
_______________________________________________ Denemo-devel mailing list [email protected] https://lists.gnu.org/mailman/listinfo/denemo-devel
