标签:dir one origin cached git comm xxx 本地 指定
推送拉取在Github操作
git add */./文件名
git commit -m '注释'
git push origin 仓库
git clone 地址
git clone -b 分支名 地址
git checkout xxx 切换分支
git checkout -b xxx 切换分支或创建分支
git status 查看分支
git merge 分支名
dir # 查看所有内容
git rm -r --cached readme3.md # 删除指定的文件
git commit -m '删除readme3' # 提交到本地仓库,删除
git push -u origin three_mas # 推送到指定的仓库进行删除
标签:dir one origin cached git comm xxx 本地 指定
原文地址:https://www.cnblogs.com/xinzaiyuan/p/12045891.html