git 常用命令
Posted detanx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 常用命令相关的知识,希望对你有一定的参考价值。
git add * -f // 添加所有文件
git add . //添加更新文件
git commit -m ‘本次提交的描述‘ // 提交文件
git pull origin [branch name] // 拉去地址分支的最新代码
git push origin [branch name] // 提交到远程
git branch // 查看分支和当前分支
git checkout [branch name] // 切换分支
git checkout [branch name] -b // 创建并切换到这个分支
git merge [branch name] 合并分支
git clone [email protected]****.com // 克隆远程仓库
git remote origin **** // 添加远程仓库
git log // 查看提交记录
git rm -r -f --cached ****/ // 删除远程的目录(删除后需重新提交更新仓库)
例: 删除node_modules
.gitignore文件上写上:
node_modules/
进入仓库目录,删除github仓库上.gitignore上新加的选项
git rm -r --cached node_modules/
重新添加要提交的选项
git add .
git commit -m ‘remove node_modules‘
最后在git push 到远程仓库上就可以了。
git push
未完,待续...
以上是关于git 常用命令的主要内容,如果未能解决你的问题,请参考以下文章