Re: [racket-dev] Using `git submodule` vs. `git pull --ff-only upstream master`

2014-04-17 Thread Greg Hendershott
For whoever else might find this useful building on OS X. Building HEAD today I got this new error: raco setup: --- creating launchers --- raco setup: launcher: console-bin/raco raco setup: --- installing man pages --- raco setup: --- installing collections --- raco setup: --- post-installing

Re: [racket-dev] Using `git submodule` vs. `git pull --ff-only upstream master`

2014-04-17 Thread Spencer Florence
stale git submodules show up on a status. What I've found helpful is to add a bit in my prompt that tells me if the current git repository has a non up to date status (And the current branch). If you're running Zsh this is a good place to start for that: git_prompt_info() { ref=$(git

Re: [racket-dev] Using `git submodule` vs. `git pull --ff-only upstream master`

2014-04-17 Thread Greg Hendershott
Yes. FWIW I do: function parse_git_dirty() { [[ $(git status 2 /dev/null | tail -n1) != *working directory clean* ]] echo * } function parse_git_branch() { git branch --no-color 2 /dev/null | sed -e '/^[^*]/d' -e s/* \(.*\)/\1$(parse_git_dirty)/ } Which goes into the the end of:

Re: [racket-dev] Using `git submodule` vs. `git pull --ff-only upstream master`

2013-12-17 Thread Greg Hendershott
To answer my own question, back in July Matthew had posted here: On Sat, Jul 27, 2013 at 9:10 AM, Matthew Flatt mfl...@cs.utah.edu wrote: Nothing has been split out of the current git repository, but there is now a native-pkgs git submodule for the native-library packages. If you build on Mac