马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
×
方法一:
gitlab-rake "gitlab:password:reset"
方法二:
$ gitlab-rails c
User.find_by_username 'root'
new_password = 'examplepassword'
user.password = new_password
user.password_confirmation = new_password
user.password_automatically_set = false
# 通知用户 user.send_only_admin_changed_your_password_notification!
user.save!
exit
|