git 常规操作
Posted little-ab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 常规操作相关的知识,希望对你有一定的参考价值。
git 清除命令 clear !!
退出vim q !!!
常用命令:https://www.cnblogs.com/springbarley/archive/2012/11/03/2752984.html
1.git init 初始化仓库
2.制造ssh秘钥 参考:https://www.cnblogs.com/yanglang/p/9563496.html
ssh-keygen -t rsa -C "your_email@example.com"
ssh -T git@github.com
3.添加远程地址 git remote -v 查看 git remote 当前的 git remote add origin[name] xxxx[url] 添加远程仓库地址 git remote update -p git remote rm [name]
git branch [name] 创建分支 git branch 查看当前分支 git branch -a 全部分支查看
git checkout [branch name] 切换分支 git checkout -b [branch name] 切换并新建分支
4.提示没有拉去的跟踪信息 git pull origin dev
5.提示没有提交的地址 git push -u origin dev -u== --set-upstream
以上是关于git 常规操作的主要内容,如果未能解决你的问题,请参考以下文章