GIT使用
Posted liuxiangpy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GIT使用相关的知识,希望对你有一定的参考价值。
Git
命令集合
git config --global user.name #名称
git config --global [email protected] #邮箱
git init opt #创建版本库
git status #查看文件的状态,红色的是表示未被添加
git add:提交代码到暂存区
git commit -m ‘注释的信息‘ file文件:把文件提交到仓库
git remote add origin https://gitee.com/whatjso/oldboygit.git #提交的时候
git push origin master #把文件推到服务器上面
git reset --hard ‘HEAD^‘ #加一个^就是回退前一个日志
git pull origin master #啦下来
git push origin master --force #--force 这个是强制提交
分支管理
git branch #查看分支
git branch dev #创建分支
git checkout dev #切换分支
git merge dev #合并分支
git改动日志查看
git log:#查看项目日志
git log file:#查看某个文件的日志
git log --pretty=oneline #简化查看日志
git reflog:#查看详细做了啥
查看远程仓库
git remote
git remote -v
删除远程仓库
git remote remove <远程地址>
git remote remove origin
添加远程仓库
git remote add <远程仓库别名><远程仓库地址>
修改远程仓库
git remote rename <旧名称><新名称>
1、使用git先进行配置:
$git config --global user.name
$git config --global user@qq.com
2、创建版本库
cd opt
mkdir test
[email protected]-0-12-ubuntu:/opt# git init
Reinitialized existing Git repository in /opt/.git/
[email protected]-0-12-ubuntu:/opt# ls -a
. .. .git test
[email protected]-0-12-ubuntu:/opt#
3、解决冲突
1、把冲突当中文件删掉
2、然后重新git add
3、git commit
4、git push origin master
以上是关于GIT使用的主要内容,如果未能解决你的问题,请参考以下文章