我想编辑推送提交的提交消息。
我尝试使用"还原提交"按钮,但收到此错误:
发生内部错误 无法还原提交' 9b424b08c83baffd18c2d5dffbe5bdb902c0cf63'因为它有0个父项,所以只支持只有一个父项的提交
注意:它是初始提交。
答案 0 :(得分:0)
试试abhik@-N4010:~$ mysql -u root -p
Enter password:
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> update user set Password = password('test') where host='localhost' and User='root';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> flush privileges ;
Query OK, 0 rows affected (0.00 sec)
。它允许您更改上次提交的提交消息。更多信息here。