一、官网下载
https://git-scm.com/
二、下载安装程序后
直接点击下载下一步,下一步完成
三、完成后下载代码
鼠标右键会有,git-bash功能菜单选项,然后就可以使用git相关命令
查看文件状态
git status
查看文件改动详情
git diff
添加所有文件到暂存区
git add .
添加指定文件到暂存区
git add "filename"
查看提交历史
git log
查看提交历史的简化版
git log --oneline
回退到上一个提交
git reset --hard HEAD^
回退到指定的commit id
git reset --hard "commit_id"
创建新分支
git branch "branch_name"
切换到指定分支
git checkout "branch_name"
创建并切换到新分支
git checkout -b "new_branch_name"
合并指定分支到当前分支
git merge "branch_name"
添加远程仓库
git remote add origin "repository_url"
拉取远程仓库的内容
git pull origin "branch_name"
推送到远程仓库
git push origin "branch_name"
添加标签
git tag "tag_name"
推送标签到远程仓库
git push origin "tag_name"
删除文件
git rm "filename"
重命名文件
git mv "old_filename" "new_filename"
查看远程仓库信息
git remote -v
查看分支详情
git branch -v
查看标签
git tag
git config --system --list
-- -- --global --list
等命令
标签:git,JAVA,name,查看,--,filename,branch,安装 From: https://www.cnblogs.com/velloLei/p/18236987