码迷,mamicode.com
首页 > 其他好文 > 详细

GIT使用

时间:2018-10-28 11:30:00      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:简化   ORC   ubuntu   版本   checkout   config   状态   文件   lin   

       Git

命令集合

git config --global user.name #名称
git config --global user@qq.com #邮箱
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
root@VM-0-12-ubuntu:/opt# git init
Reinitialized existing Git repository in /opt/.git/
root@VM-0-12-ubuntu:/opt# ls -a
. .. .git test
root@VM-0-12-ubuntu:/opt#
3、解决冲突

1、把冲突当中文件删掉 
2、然后重新git add 
3、git commit 
4、git push origin master

GIT使用

标签:简化   ORC   ubuntu   版本   checkout   config   状态   文件   lin   

原文地址:https://www.cnblogs.com/liuxiangpy/p/9864569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!