相关疑难解决方法(0)

如何通过'git log'显示第一次提交?

我有一个历史悠久的项目.我想在git上显示第一个提交.

我该怎么做呢?

git

263
推荐指数
6
解决办法
9万
查看次数

有人能告诉我为什么第一块TCL不能编译而第二块呢?

代码如下.单独运行,顶部不会以任何方式编译,但底部段编译正常.

proc printbobs  {times {textd "cream corn"}} {
    for {set r 0} {$r<$times} {incr r}{
        puts $textd
    }
    return $times
}
printbobs 2 
Run Code Online (Sandbox Code Playgroud)
proc printText {times2 {textp "hello word"}} {
    for {set i 0} {$i<$times2} {incr i} {
        puts $textp
    }
    return $times2
}
printText 2
Run Code Online (Sandbox Code Playgroud)

tcl

0
推荐指数
1
解决办法
57
查看次数

标签 统计

git ×1

tcl ×1