DEV Community

Discussion on: Git standup, how did I ever live without you?

Collapse
 
lennartb profile image
Lennart

You can do something similar with TFS:

```tf history "$/" /recursive /user:YOURUSERNAME /noprompt | head -n NUMBEROFCHECKINS



and as a Powershell function:



```function tfhist {tf history "$/" /recursive /user:YOURUSERNAME /noprompt | head -n NUMBEROFCHECKINS}
set-alias standup tfhist
Enter fullscreen mode Exit fullscreen mode