Drive-by downloads of Install macOS Monterey

2022-02-23 Thread Ryan Schmidt
I noticed copies of the Install macOS Monterey application on both the Catalina and Big Sur MacPorts buildbot build machines. I've of course never requested the download of these installers on those systems and they are configured not to update automatically and not to download new updates autom

Re: Is this git handling of a problem on my macports-ports fork&clone OK?

2022-02-23 Thread Chris Jones
> git pull --rebase --autostash origin master works pretty much just fine 99.9% of the time. cheers Chris * Its actually what 'port sync' does under the hood, if you have configured macports to work directly off a git checkout of the ports tree, instead of the dfault rsync tarball ** the

Re: Is this git handling of a problem on my macports-ports fork&clone OK?

2022-02-23 Thread Kirill A. Korinsky via macports-users
Hey, I'd like to share with two git aliases which I've made special for MacPorts :) cleanup = !git branch --merged origin/HEAD | grep -v ' -> ' | grep -v '^\\*' | xargs -n 1 git branch -d rebaseall = !git branch --no-merged | xargs -n 1 git rebase origin/HEAD The first one simpl

Re: Is this git handling of a problem on my macports-ports fork&clone OK?

2022-02-23 Thread Joshua Root
Gerben Wierda wrote: But I have been advised a pull is not enough, I should first do a fetch. If you're referring to my private reply, what I said was that a rebase was not enough to bring master up to date with upstream/master, you have to fetch as well. As per the git-pull man page: