-
Notifications
You must be signed in to change notification settings - Fork 2
Description
This is something I've noticed several times and keep forgetting to mention.
In a codespace, if you have to pull as well as push back to a branch (for a sync), it will always error out without
much information unless you click the "show me the log" button that pops up. But this is because git doesn't
have a default git rebase method. This is easy enough (if a little annoying to do repeatedly) to fix, but for a new
user that doesn't know much about git this might be unclear, since "rebase" may mean nothing to them. So it
would be nice to run the following line when a codespace is built, as part of the setup:
git config pull.rebase false # merge
EDIT: I wasn't sure if I should put this here, ximeraDevProject, or ximeraLatex, or somewhere else... so I put it here for now, but can move/repost if needed.