Hi Daniel, Faré,
My apologies for lack of gitcompetence but I'm confused as to what I've done wrong. I've got
[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)
[parsnip:/repository/git/asdf] gwking% git branch -r -v cl.net/master fff0c81 Tweaked many tests to remove many warnings cvs/HEAD e7e4681 2009-01-10 gwking@metabang.com cvs/dan 2b0f636 Initial import cvs/master e7e4681 2009-01-10 gwking@metabang.com save/master 5f64961 minor website tweaks
thanks,
On Sep 9, 2009, at 9:59 PM, Daniel Herring wrote:
Hi Gary,
Thanks for pushing all the tags to git. Unfortunately, the "master" branch is one revision behind tag 1.363. As a result, a simple clone or update from the repository will miss the resolve-symlinks patch.
http://common-lisp.net/gitweb?p=projects/asdf/asdf.git
Later, Daniel
On Wed, 9 Sep 2009, Gary King wrote:
This release restores the `resolve-symlinks` function which I had removed while cleaning up without realizing that ASDF-Binary- Locations made use of it. Thanks to Robert Goldman for the catch.
-- 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 asdf-devel@common-lisp.net 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
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
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 asdf-devel@common-lisp.net 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
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 gwking@metabang.com:
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 asdf-devel@common-lisp.net 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 asdf-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel