标签:不用 更新 简单 协同 push folder remove 本地 git
mkdir folder //创建文件夹
cd folder/
git clone git连接
git status //git当前的状态
ls //当前目录下的所有文件
cd gitFolder 进入Git目录
git cherry 更新当前分支
git log //看日志
git add . (git add *) 添加git下的文件
git commit -m ‘提交’ 本地提交
git pull 本地提交与远端进行比较看是否存在冲突(存在协同开发每次提取代码前都需要跟本地提交进行对比,看是否有冲突)
git branch -a 查看分支
git push (远端的代码跟本地提交无冲突时,直接push到远程)
查看git status 提示nothing 表示提交到远端无错误
删除远程文件(当需要删除不用的远端文件)
cd 路径
git rm -r -cached “folder/”
git commit -m “remove bin folder”
git push
标签:不用 更新 简单 协同 push folder remove 本地 git
原文地址:https://www.cnblogs.com/tryFighting/p/9729710.html