You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
~/.gitconfig is different because it's actually copied — a symlink doesn't get created. This is because we need to run git config --global user.name <name> and git config --global user.email <email>. The problem is that if you want to update your git config, simply running bin/manage install won't apply those updates, as then, ~/.gitconfig would get overwritten. This wouldn't be a problem if the manage script somehow reused your current git name and email.
The text was updated successfully, but these errors were encountered:
~/.gitconfig
is different because it's actually copied — a symlink doesn't get created. This is because we need to rungit config --global user.name <name>
andgit config --global user.email <email>
. The problem is that if you want to update your git config, simply runningbin/manage install
won't apply those updates, as then,~/.gitconfig
would get overwritten. This wouldn't be a problem if the manage script somehow reused your current git name and email.The text was updated successfully, but these errors were encountered: