书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 16090 个相关结果.
  • git log

    7619 2018-02-27 《阮一峰 Git 教程》
    git log 命令行参数 —oneline git log git log 命令按照提交时间从最晚到最早的顺序,列出所有 commit。 # 列出当前分支的版本历史 $ git log # 列出某个文件的版本历史,包括文件改名 $ git log -- follow [ file ] 查看远程分支的变动情况。 $...
  • 事务管理

    事务管理 语法格式 使用场景 使用限制 示例 事务管理 存储过程本身就处于一个事务中,开始调用最外围存储过程时会自动开启一个事务,在调用结束时自动提交或者发生异常时回滚。除了系统自动的事务控制外,也可以使用COMMIT/ROLLBACK来控制存储过程中的事务。在存储过程中调用COMMIT/ROLLBACK命令,将提交/回滚当前事务并自动开启一个...
  • Committing code

    Committing code Handling pull requests Committing guidelines Reverting commits Committing code This section is addressed to the mergers and to anyone interested in knowing ho...
  • 事务管理

    事务管理 语法格式 使用场景 使用限制 示例 事务管理 存储过程本身就处于一个事务中,开始调用最外围存储过程时会自动开启一个事务,在调用结束时自动提交或者发生异常时回滚。除了系统自动的事务控制外,也可以使用COMMIT/ROLLBACK来控制存储过程中的事务。在存储过程中调用COMMIT/ROLLBACK命令,将提交/回滚当前事务并...
  • Committing code

    Committing code Handling pull requests Committing guidelines Reverting commits Committing code This section is addressed to the committers and to anyone interested in knowin...
  • GitHub Workflow

    GitHub Workflow Fork The Project Adding the Forked Remote Create & Rebase Your Feature Branch Commit & Push Open a Pull Request Get a code review Squashing Commits Example P...
  • GitHub Workflow

    GitHub Workflow Fork The Project Adding the Forked Remote Create & Rebase Your Feature Branch Commit & Push Open a Pull Request Get a code review Squashing Commits Example P...
  • Git的操作

    6309 2018-02-27 《阮一峰 Git 教程》
    Git的操作 新建代码库 配置 增加/删除文件 代码提交 分支 标签 查看信息 远程同步 撤销 其他 Git的操作 新建代码库 # 在当前目录新建一个Git代码库 $ git init # 新建一个目录,将其初始化为Git代码库 $ git init [ project - name ] # 下载一个...
  • Committing code

    Committing code Handling pull requests Committing guidelines Reverting commits Committing code This section is addressed to the committers and to anyone interested in knowin...
  • Actions

    386 2020-12-20 《Vuex v3.x Document》
    Actions Dispatching Actions Dispatching Actions in Components Composing Actions Actions Try this lesson on Scrimba Actions are similar to mutations, the differences being ...