标签:studio new latest eset git merge body 常用命令 处理 targe
工具名称 | 相关地址 |
---|---|
Git | Git for Windows |
VSC | Visual Studio Code |
VSC插件(Gitlen) | GitLens — Git supercharged |
假设此时,你突然接到一个电话说有个很严重的问题需要紧急修补,那么可以按照下面的方式处理
git clone http://xxxxxxx.git
git branch
git branch -a
git branch -d targetBranchName
git push origin :targetBranchName
git checkout branchname
git checkout -b newBranchName
git checkout -b newBranchName origin/targetBranchName
git fetch origin --prune
git merge --abort
--hard
,硬删除从这个ID到最新ID的中间提交
git reset --hard CommitId
git reset --hard 0e45f915c879821b5d289351468cd046eeb9c1d5
-f
,强制覆盖
git push origin BranchName -f
git push origin ZhangSan_FixBug_20191104 -f
dotnet nuget push xxx.xxxxxxxx.xxxx.1.0.0.0.nupkg -k xxxxxxxx -s http://x.x.1.x:x/nuget
./nuget.exe delete xxx.xxxxxxxx.xxxx 1.0.0.0 -Source http://x.x.1.x:x/nuget -apikey xxxxxxxxx
ren * *.
xxxxxxxx>ren * *.
源代码管理相关命令(Git常用命令、Nuget常用命令、CMD常用命令)
标签:studio new latest eset git merge body 常用命令 处理 targe
原文地址:https://www.cnblogs.com/craigtaylor/p/12345074.html