Git 远程提交流程
全局配置
git config --global user.name "Your Name"
git config --global user.email "email@example.com"
常用命令
-
初始化
git init
-
添加到暂存盘
git add .
-
提交
git commit -m "提示信息"
-
查看信息
git log
-
查看相关历史信息
git reflog
-
测试工作区操作
git checkout --文件名
-
回退版本
git reset --hard 版本id
-
查看分支
git branch
-
创建分支
git branch <name>
-
切换分支
git checkout <name>
-
创建+切换分支
git checkout -b <name>
-
合并某分支到当前分支
git merge <name>
-
删除分支
git branch -d <name>
-
添加远程仓库
git remote add origin git@github.com:cloudliu98/dqd.git
-
推送本地代码到远程
git push -u origin master -f
初始化
git init
添加远程仓库
- 注册github账号 并创建仓库
- 制作钥匙
- 打开gitbash
- 输入命令 $ ssh-keygen -t rsa -C "youremail@example.com"
- 在用户目录里找到.ssh目录,打开 id_rsa.pub文件复制到github里面
- 进入项目目录添加远程仓库
git remote add origin git@github.com:cloudliu98/dqd.git
- 执行
git add .
和git commit -m "xxx"
- 推送本地代码到远程
git push -u origin master -f