gitlab的常规操作
gitlab是我自己搭建,可以参考gitlab搭建
首先需要配置web端的ssh密钥才能操作远程,配置过程如下:
在linux主机上先做密钥认证
# ssh-keygen
认证成功后,我们可以发现在本地目录/root/.ssh/下会发现有id_rsa.pub的文件,把该文件的内容复制到web端,做ssh的密钥
[[email protected] ~]# ls /root/.ssh/ authorized_keys id_rsa id_rsa.pub known_hosts
添加过程如下:
登陆你的gitlab,点击setting,如下图所示:
鼠标移动钥匙的图表点击SSH keys
然后把你需要验证主机的id_rsa.pub的东西复制到密钥框里面,添加完毕后就可以完事了,如下图所示:
克隆gitlab远程库(前提是已经创建完你的项目)
我这里在搭建的时候没有填写ip,所以显示的路径是localost这个问题不是很大,我们可以直接用IP克隆就好。
# cd /learngit/ #git clone [email protected]:xiaozhang/xiaozhang.git
1、接下来了解一下git的常规使用,首先我们从本地发布,然后同步到远程服务端。
#我们在本地库上创建文件
[[email protected] xiaozhang]# pwd /learngit/xiaozhang [[email protected] xiaozhang]# echo 123 > xiaozhang.html
查看一下状态
[[email protected] xiaozhang]# git status # On branch master # Untracked files: # (use "git add <file>..." to include in what will be committed) # #xiaozhang.html nothing added to commit but untracked files present (use "git add" to track)
可以发现系统叫你把本地文件加入到本地库里面,我们添加一下
[[email protected] xiaozhang]# git add xiaozhang.html [[email protected] xiaozhang]# git status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # #new file: xiaozhang.html
发现,新文件已经添加到本地创库里面了,但是git的状态还没清除,这就需要我们下一步的用commit来打标签了。
[[email protected] xiaozhang]# git commit -m 'add xiaozhang.html' [master 491b8f9] add xiaozhang.html 1 file changed, 1 insertion(+) create mode 100644 xiaozhang.html
[[email protected] xiaozhang]# git status # On branch master # Your branch is ahead of 'origin/master' by 1 commit. # (use "git push" to publish your local commits) # nothing to commit, working directory clean
到了这一步,发现任务状态已经清除了,然后我试的推送到远端。
[[email protected] xiaozhang]# git push warning: push.default is unset; its implicit value is changing in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the current behavior after the default changes, use: git config --global push.default matching To squelch this message and adopt the new behavior now, use: git config --global push.default simple See 'git help config' and search for 'push.default' for further information. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode 'current' instead of 'simple' if you sometimes use older versions of Git) Counting objects: 4, done. Delta compression using up to 2 threads. Compressing objects: 100% (2/2), done. Writing objects: 100% (3/3), 317 bytes | 0 bytes/s, done. Total 3 (delta 0), reused 0 (delta 0) To [email protected]:xiaozhang/xiaozhang.git c0e86ec..491b8f9 master -> master
发现已经成功的推送到远端。查看远端web我们也已经可以发现,文档已经推送到远端了。
2、源程端代码被更新,而本地库没有最新的更新。
我们之直接在远程删除文件
远程端已经做了最新的修改了,而本地库可以发现文件还在
[[email protected] xiaozhang]# ls helloword.txt xiaozhang.html xiaozhang.txt
到这时很多人会想,我可以把本地库再push一遍吗,这是不行的,远程端是不允许你这样做的,因为远程端修改的就是最新的操作,你的本地库已经过时了,不信的话我们来推送一下。
我们会发现失败,接着我们看一下提示,发现它已经提示你需要拉pull下载才你正常操作。
拉取:
[[email protected] xiaozhang]# git pull remote: Counting objects: 2, done. remote: Compressing objects: 100% (2/2), done. remote: Total 2 (delta 1), reused 0 (delta 0) Unpacking objects: 100% (2/2), done. From 10.10.109.53:xiaozhang/xiaozhang 491b8f9..f588d76 master -> origin/master Updating 491b8f9..f588d76 Fast-forward xiaozhang.html | 1 - 1 file changed, 1 deletion(-) delete mode 100644 xiaozhang.html
我们发现本地库又与远程库同步成功了。
3、各种信息查询、以及版本回滚。
(1)查看日志信息
[[email protected] xiaozhang]# git log --pretty=oneline f588d76af5d67278c05fdcda2701665896cd2cd9 删除 xiaozhang.html 491b8f9638a2640988fac5e4dbbd1355cc3777db add xiaozhang.html
我们发现里面有记录的commit的操作,如果你想更详细的可以这样
[[email protected] xiaozhang]# git reflog f588d76 [email protected]{0}: pull: Fast-forward 491b8f9 [email protected]{1}: commit: add xiaozhang.html c0e86ec [email protected]{2}: commit: add hellword 697749d [email protected]{3}: clone: from [email protected]:xiaozhang/xiaozhang.git
(2)分支查询与创建,我们可以通过branch –a查看所有的分支信息
[[email protected] xiaozhang]# git branch -a * master remotes/origin/HEAD -> origin/master remotes/origin/master
我们接着创建一个分支
[ [email protected] xiaozhang]# git checkout -b xiaozhang Switched to a new branch 'xiaozhang'
这个命令的作用就相当于
#git branch xianzhang #创建分支 #gir checkout xiaozhang #把xiaozhang变成主分支
(3)版本回滚
版本回滚主要就是通过日志来回滚以前的版本
#git reset --hard HEAD^ 回滚上个版本 # git reset --hard HEAD^^ 回滚上上个版本
其他的我们通过git reflog来查看版本信息,任何回滚,列如
# git reset --hard (+前面的编号如:f588d76af5d,这些编号只需要三四个就可以实现版本回滚了。)
总结
个人对gitlab的操作配置,希望能帮到大家
原文地址:http://blog.51cto.com/xiaozhagn/2123123