I *think* that the following should work: git push --tags $url master:master
Please double check. [ François-René ÐVB Rideau | Reflection&Cybernethics | http://fare.tunes.org ] If debugging is the process of removing bugs, then programming must be the process of putting them in. -- Dijkstra 2009/9/11 Gary King <[email protected]>: > I think the problem is that I changed my command from > > git push cl.net > > to > > git push --tags cl.net > > and ended up pushing only the tags <oh my goodness> > > I guess I need to do both. > > > > On Sep 9, 2009, at 10:51 PM, Daniel Herring wrote: > >> On Wed, 9 Sep 2009, Gary King wrote: >>> My apologies for lack of gitcompetence but I'm confused as to what >>> I've done >>> wrong. >> >> You're getting there. >> >> >>>> [parsnip:/repository/git/asdf] gwking% git describe --tag >>>> 1.363 >>>> [parsnip:/repository/git/asdf] gwking% git push --tags cl.net >>>> Everything up-to-date >>> >>> but, as you both noted, the master repo on >>> http://common-lisp.net/project/asdf isn't right. >>> >>> Is this the problem? (If so, how do I fix it) >> >> Somehow the "master" branch fell behind the latest tag. The following >> is one way to update it. >> # git branch # [optional] expected result: "* master" >> # git rebase 1.363 # expected result: "fast forward to 5b3d1..." >> # git show # [optional] expected result: show the 5b3d1 patch >> # gitk --all # [optional] visually verify master is at 1.363 >> # git push cl.net master >> >> >> As to how this happened, beats me. The "branch -r" doesn't show >> anything >> amiss. Maybe you did a push into this repo and didn't update the >> master >> branch before pushing to cl.net? >> >> Hope that helps, >> Daniel >> >> _______________________________________________ >> asdf-devel mailing list >> [email protected] >> http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel > > -- > Gary Warren King, metabang.com > Cell: (413) 559 8738 > Fax: (206) 338-4052 > gwkkwg on Skype * garethsan on AIM * gwking on twitter > > > > > > > _______________________________________________ > asdf-devel mailing list > [email protected] > http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel > _______________________________________________ asdf-devel mailing list [email protected] http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel
