摘要: Git fetch a specific commit by hash 回答1 As today I tried: git fetch origin <commit-hash> And it works like a charm! (git version 2.20.1) Just be sure 阅读全文
posted @ 2022-08-10 16:01 ChuckLu 阅读(72) 评论(0) 推荐(0)
摘要: Git fetch Pull Requests from Azure DevOps 问题 I want to fetch, using git, the list of Pull Requests in a repository hosted in Azure DevOps. Github has 阅读全文
posted @ 2022-08-10 15:25 ChuckLu 阅读(34) 评论(0) 推荐(0)
摘要: sql query if parameter is null select all Try this: SELECT * FROM MY_TABLE WHERE @parameter IS NULL OR NAME = @parameter; SQL select all if parameter 阅读全文
posted @ 2022-08-10 11:00 ChuckLu 阅读(26) 评论(0) 推荐(0)