docker使用
docker
git日常使用
常用命令1234567891011121314151617181920212223242526# 初始化仓库git init# 添加文件到暂存区git add .# 提交到本地仓库git commit -m "first commit"# 查看状态git status# 查看提交记录git log# 查看命令历史git reflog# 版本回退git reset --hard HEAD^# 撤销修改git checkout -- <file># 删除文件git rm <file># 关联远程仓库git remote add origin <远程仓库地址># 推送到远程仓库git push -u origin master# 克隆远程仓库git clone <远程仓库地址># 查看远程库信息git remote -v
分支相关12345678910111213141516# 查看分支git branch# 创建分支git branch <name># 切换分支git checkout <name> ...
markdown语法测试
一级标题二级标题三级标题加粗
斜体
删除线
引用
链接
无序列表
无序列表
无序列表
有序列表
有序列表
有序列表
代码
12const name: string = 'hello world'console.log(name)
表格
表格
表格
表格
表格
表格
表格
表格
表格
未完成
未完成
未完成
已完成