标签:hub 仓库 lan name 添加 地址 清除 arc pre
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
标签:hub 仓库 lan name 添加 地址 清除 arc pre
原文地址:https://www.cnblogs.com/little-ab/p/11397428.html