修改代码之后上传,打开项目,鼠标右键选择 Git Bash Here 进入小黑窗
第一次需要配置用户名和邮箱
$ git init 初始化
$ git add .# 添加当前目录的所有文件到暂存区
$ git commit -m [message] # 提交暂存区到仓库区
$ git branch # 列出所有本地分支
$ git branch -r # 列出所有远程分支
$ git checkout [branch-name] # 切换到指定分支,并更新工作区
$ git merge[branch] # 合并指定分支到当前分支(多人开发时合并更改的不同模块)
$ git pull [remote] [branch] # 取回远程仓库的变化,并与本地分支合并
$ git push [remote] [branch] # 上传本地指定分支到远程仓库
$ git remote set-url origin git@1##.23.153.##:huruyi(可以设定指定)
$ git reflog # 显示当前分支的最近几次提交
显示最近的提交$ git log # 显示commit历史,以及每次commit发生变更的文件
$ git reset [file] # 重置暂存区的指定文件,与上一次commit保持一致,但工作区不变
$ git reset --hard # 重置暂存区与工作区,与上一次commit保持一致
e8a5420 回滚到提交之前的状态
网友评论