本文共 212 字,大约阅读时间需要 1 分钟。
gitlab修改用户密码
user=User.where(name: "root").first user.password='12345678' user.password_confirmation = '12345678' user.save! quit
user=User.where(name: "root").first
user.password='12345678'
user.password_confirmation = '12345678'
user.save!
quit
转载于:https://blog.51cto.com/weimouren/2369503