svn及git使用笔记
这周发生好几件大事:
- 谷歌发布SHA-1安全加密碰撞实例
- Cloudflare 泄露网络会话中的加密数据
- linux内核漏洞 CVE-2017-6074
加密在网络中越来越受关注,目前github的提交仍然是以SHA-1作为标签的,期待后期改善。
下面是安装使用git的简短记录, 有些翻译不完整
安装
如果需要 Bash 命令补完(也即按下 Tab 来完成你正在键入的命令),请在~/.bashrc
文件中添加如下内容:
source /usr/share/git/completion/git-completion.bash
你也可以安装 bash-completion 来自动为 shell 提供命令补完。
如果你想使用 Git 内建的图形界面(例如 gitk 或者 git gui),你需要安装 tk 软件包,否则你会遇到一个隐晦的错误信息:
/usr/bin/gitk: line 3: exec: wish: not found.
配置
Git 从若干 INI 格式的配置文件中读取配置信息。在每一个 git 版本库中,.git/config
用于指定与该版本库有关的配置选项。在 $HOME/.gitconfig
中的用户 ("global") 的配置文件将被用作仓库配置的备用配置。你可以直接编辑配置文件,但是更推荐的方法是使用 git-config 工具。例如,
$ git config --global core.editor "nano -w"
会在 ~/.gitconfig 文件的 [core] 部分中添加 editor = nano -w。
git-config 工具的 man page 提供了完整的选项列表。
这是一些你可能用到的常见的配置:
$ git config --global user.name "Firstname Lastname"
$ git config --global user.email "your_email@youremail.com"
在 Git 命令行下启用彩色输出
配置 color.ui 选项可以令 Git 以彩色输出信息。
$ git config --global color.ui true
解决 Git 在命令行下中文文件名显示为数字的问题
$ git config --global core.quotepath false
基本用法
克隆一个版本库
以下命令可以将一个 Git 版本库克隆至本地目录的新文件夹中:
git clone <repo location> <dir>
如果留空 字段,就会以 Git 版本库的名称命名新文件夹,例如:
git clone git@github.com:torvalds/linux.git
可以将 GitHub 上 Linux 内核的镜像克隆至名为「linux」的文件夹中。
提交(commit)文件到版本库
Git 的提交过程分为两步:
添加新文件、修改现有的文件(均可通过 git add 完成), 或者删除文件(通过 git rm 完成)。这些修改将被存入名叫 index 的文件中。
使用 git commit 提交修改。
Git 提交时会打开文本编辑器,填写提交信息。你可以通过 git config 命令修改 core.editor 来选择编辑器。
此外,你也可以直接用 git commit -m 命令在提交时填写提交信息,这样就不会打开编辑器。
其它有用的技巧:
git commit -a lets you commit changes you have made to files already under Git control without having to take the step of adding the changes to the index. You still have to add new files with git add.
git commit -a 命令可以跳过添加修改的部分,但是如果创建新文件依然需要 git add。
git add -p 命令可以提交修改文件的特定部分。如果你进行了许多修改而且希望将其分多次提交的话,这一选项非常有用。
将改动提交(push)到公共版本库
以下命令可以将修改提交至服务器(例如 Github):
git push <server name> <branch>
添加 -u 参数可以将该服务器设为当前分支(branch)提交时的默认服务器。如果你是通过上文的方法克隆的版本库,默认服务器将是你克隆的来源(别名「origin」),默认分支将是 master。也就是说如果你按照上文的方法克隆的话,提交时只要执行 git push 即可。如果需要的话,可以令 Git 提交至多个服务器,不过这比较复杂。下文将讲解分支(branch)。
从服务器公共版本库下载修改
如果你在多台电脑上工作,并且需要将本地版本库与服务器更新,可以执行:
git pull <server name> <branch>
与 push 类似,server name 与 branch 都可以根据默认来,所以只需执行 git pull。
Git pull 实际上是如下两个命令的简写:
git fetch,将服务器文件复制至本地,这一分支被称作「remote」也即它是远程服务器的镜像。
git merge,将「remote」分支的文件与本地文件合并。如果你的本地提交记录与服务器的提交记录相同,就可以直接得到服务器的最新版本。如果你的提交记录与服务器的记录不符(例如在你最后一次提交之后别人进行了提交),两份提交记录将被合并。
It is not a bad idea to get into the practice of using these two commands instead of git pull. This way you can check to make sure that the server contains what you would expect before merging.
分步执行两个命令而非 git pull 并不是坏事,这样可以确保合并之前服务器的文件与你期望的相同。
查看历史记录
git log 命令可以显示当前分支的历史记录。注意每一次提交(commit)会以一个 SHA-1 标记区分,接下来是提交者、提交日期以及提交信息。更实用的命令:
git log --graph --oneline --decorate
可以显示与 TortoiseGit 的提交记录类似的窗口,这一窗口包含了如下内容:
每次提交的 SHA-1 标记的前七位(足以区分不同的提交)
--graph 选项可以显示从当前分支 fork 的分支数目(如果有的话)
--oneline 选项可以在一行内显示每次提交的信息
--decorate 选项可以显示所有的提交信息(包括分支与标签)
可以通过如下命令将这一命令以 git graph 的别名保存:
git config --global alias.graph 'log --graph --oneline --decorate'
现在执行 git graph 将等价于执行 git log --graph --oneline --decorate。
git graph 与 git log 命令也可以带 --all 的参数执行,这将显示所有的分支信息,而不止当前的分支。
也可以带 --stat 参数执行,它可以显示每次提交时哪些文件有修改、修改了多少行。
处理合并(merge)
当你执行 pull、进行复原操作,或者将一个分支与另一个进行合并时会需要处理合并。与其它 VCS 类似,当 Git 无法自动处理合并时,就需要使用者进行处理。
可以查看 Git Book 的这一部分讲解如何处理冲突合并。
如果你需要通过合并来还原的话,可以带 --abort 参数运行合并相关的命令,例如 git merge --abort,git pull --abort,git rebase --abort)。
使用分布式版本控制系统
The above commands only provide the basics. The real power and convenience in Git (and other distributed version control systems) come from leveraging its local commits and fast branching. A typical Git workflow looks like this:
Create and check out a branch to add a feature.
Make as many commits as you would like on that branch while developing that feature.
Squash, rearrange, and edit your commits until you are satisfied with the commits enough to push them to the central server and make them public.
Merge your branch back into the main branch.
Delete your branch, if you desire.
Push your changes to the central server.
创建一个分支
git branch <branch name>
can be used to create a branch that will branch off the current commit. After it has been created, you should switch to it using
git checkout <branch name>
A simpler method is to do both in one step with
git checkout -b <branch name>
To see a list of branches, and which branch is currently checked out, use
git branch
A word on commits
Many of the following commands take commits as arguments. A commit can be identified by any of the following:
Its 40-digit SHA-1 hash (the first 7 digits are usually sufficient to identify it uniquely)
Any commit label such as a branch or tag name
The label HEAD always refers to the currently checked-out commit (usually the head of the branch, unless you used git checkout to jump back in history to an old commit)
Any of the above plus ~ to refer to previous commits. For example, HEAD~ refers to one commit before HEAD and HEAD~5 refers to five commits before HEAD.
提交为检查点
In Subversion and other older, centralized version control systems, commits are permanent - once you make them, they are there on the server for everyone to see. In Git, your commits are local and you can combine, rearrange, and edit them before pushing them to the server. This gives you more flexibility and lets you use commits as checkpoints. Commit early and commit often.
编辑之前的提交
git commit --amend
allows you to modify the previous commit. The contents of the index will be applied to it, allowing you to add more files or changes you forgot to put in. You can also use it to edit the commit message, if you would like.
插入、重新排序和更改历史记录
git rebase -i <commit>
will bring up a list of all commits between and the present, including HEAD but excluding . This command allows you rewrite history. To the left of each commit, a command is specified. Your options are as follows:
The "pick" command (the default) uses that commit in the rewritten history.
The "reword" command lets you change a commit message without changing the commit's contents.
The "edit" command will cause Git to pause during the history rewrite at this commit. You can then modify it with git commit --amend or insert new commits.
The "squash" command will cause a commit to be folded into the previous one. You will be prompted to enter a message for the combined commit.
The "fixup" command works like squash, but discards the message of the commit being squashed instead of prompting for a new message.
Commits can be erased from history by deleting them from the list of commits
Commits can be re-ordered by re-ordering them in the list. When you are done modifying the list, Git will prompt you to resolve any resulting merge problems (after doing so, continue rebasing with git rebase --continue)
When you are done modifying the list, Git will perform the desired actions. If Git stops at a commit (due to merge conflicts caused by re-ordering the commits or due to the "edit" command), use git rebase --continue to resume. You can always back out of the rebase operation with git rebase --abort.
Warning: Only use git rebase -i on local commits that have not yet been pushed to anybody else. Modifying commits that are on the central server will cause merge problems for obvious reasons.
Note: Vim makes these rebase operations very simple since lines can be cut and pasted with few keystrokes.
Git提示符
The Git package comes with a prompt script. To enable the prompt addition you will need to source the git-prompt.sh script and add $(__git_ps1 " (%s)") to you PS1 variable.
Copy /usr/share/git/completion/git-prompt.sh to your home directory (e.g. ~/.git-prompt.sh).
Add the following line to your .bashrc/.zshrc:
source ~/.git-prompt.sh
For Bash:
PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
Note: For information about coloring your bash prompt see Color_Bash_Prompt
For zsh:
PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ '
The %s is replaced by the current branch name. The git information is displayed only if you are navigating in a git repository. You can enable extra information by setting and exporting certain variables to a non-empty value as shown in the following table:
TODO: 表格格式化
Variable Information
GIT_PS1_SHOWDIRTYSTATE * for unstaged and + for staged changes
GIT_PS1_SHOWSTASHSTATE $ if something is stashed
GIT_PS1_SHOWUNTRACKEDFILES % if there are untracked files
传输协议
智能HTTP
Since version 1.6.6 git is able to use the HTTP(S) protocol as efficiently as SSH or Git by utilizing the git-http-backend. Furthermore it is not only possible to clone or pull from repositories, but also to push into repositories over HTTP(S).
The setup for this is rather simple as all you need to have installed is the Apache web server (with mod_cgi, mod_alias, and mod_env enabled) and of course, git:
Once you have your basic setup up and running, add the following to your Apache's config usually located at /etc/httpd/conf/httpd.conf:
<Directory "/usr/lib/git-core*">
Order allow,deny
Allow from all
</Directory>
SetEnv GIT_PROJECT_ROOT /srv/git
SetEnv GIT_HTTP_EXPORT_ALL
ScriptAlias /git/ /usr/lib/git-core/git-http-backend/
The above example config assumes that your git repositories are located at /srv/git and that you want to access them via something like http(s)
svn及git使用笔记的更多相关文章
- 【转帖】Git学习笔记 记录一下
本文内容参考了廖雪峰老师的博文,并做了适当整理,方便大家查阅. 原帖地址 https://wangfanggang.com/Git/git/ 常用命令 仓库初始化 - git init 1 git i ...
- git实践笔记
title: git实践笔记 date: 2016-10-15 18:40:26 tags: [Git] categories: [Tool,Git] --- 概述 本文记录常用 git 的功能和命令 ...
- Git学习笔记(二) · 非典型性程序猿
远程库的使用 前面说到的都是git在本地的操作,那么实际协作开发过程中我们肯定是要有一个远程版本库作为项目的核心版本库,也就是投入生产使用的版本.这里我们以 Github为例.Github是一个开放的 ...
- Git学习笔记与IntelliJ IDEA整合
Git学习笔记与IntelliJ IDEA整合 一.Git学习笔记(基于Github) 1.安装和配置Git 下载地址:http://git-scm.com/downloads Git简要使用说明:h ...
- 命令行操作svn和git和git
前几天在写代码的时候电脑突然坏掉,老大交代的任务没完成,非常痛恨自己用svn或者git保存代码,相信很多程序员遇到过,硬盘坏掉,存在硬盘中的代码丢失,无法找回的问题,svn和git可谓程序员界的福音, ...
- Git学习笔记(10)——搭建Git服务器
本文主要记录了Git服务器的搭建,以及一些其他的配置,和最后的小总结. Git远程仓库服务器 其实远程仓库和本地仓库没啥不同,远程仓库只是每天24小时开机为大家服务,所以叫做服务器.我们完全可以把自己 ...
- Git学习笔记(四)
一.忽略特殊文件 在Git工作区的根目录下创建一个特殊的.gitignore文件,然后把要忽略的文件名填进去,Git就会自动忽略这些文件. 不需要从头写.gitignore文件,GitHub已经为我们 ...
- git 学习笔记6--remote & log
git 学习笔记6--remote & log 创建SSH Keys ssh-keygen -t rsa -C "1050244110@qq.com" 本地关联远程 git ...
- Svn与Git的一些区别(转载)
把第一条理解到位思想到位了做起来才会有的放矢,其他几条都是用的时候才能体会到 1) 最核心的区别Git是分布式的,而Svn不是分布的.能理解这点,上手会很容易,声明一点Git并不是目前唯一的分布式版本 ...
随机推荐
- nginx內建模块使用
目录 nginx內建模块使用 1. 內建模块的引入 1.1 查看安装信息 1.2 重新指定配置信息 2. 內建模块的使用 2.1 http_stub_status_module 2.2 http_ra ...
- eureka集群高可用配置,亲测成功配置(转)
转自大神的文章:https://blog.csdn.net/tianyaleixiaowu/article/details/78184793 网上讲这个东西的很多,抄来抄去的,大部分类似,多数没讲明白 ...
- Nginx日志配置与切割
访问日志主要记录客户端访问Nginx的每一个请求,格式可以自定义.通过访问日志,你可以得到用户地域来源.跳转来源.使用终端.某个URL访问量等相关信息. Nginx中访问日志相关指令主要有两条,一条是 ...
- lua学习笔记(十一)
面向对象编程 对象的实现 在lua中table就是一种对象 1.有自己的状态 2.有自己的唯一标识self 3.有自己的生命周期 ...
- [译]GLUT教程 - 整合代码6
Lighthouse3d.com >> GLUT Tutorial >> Extras >> The Code So Far VI 下面代码以窗体模式启动.你可以在 ...
- MapReduce源码分析之InputFormat
InputFormat描述了一个Map-Reduce作业中的输入规范.Map-Reduce框架依靠作业的InputFormat实现以下内容: 1.校验作业的输入规范: 2.分割输入文件(可能为多个), ...
- u-boot README--linux support
Linux HOWTO:============ Porting Linux to U-Boot based systems:------------------------------------- ...
- nginx做反向代理proxy_pass,proxy_redirect的使用
大 | 中 | 小 今天用nginx作为trac的反代,发现一个问题,就是登入登出跳转的时候是白页,看了下网页相应内容,发现相应的location是空的.查了一下发现是只单纯用了proxy_pas ...
- IE8 兼容 getElementsByClassName
IE8以下版本没有getElementsByClassName这个方法,以下是兼容写法 function ieGetElementsByClassName() { if (!document.getE ...
- 01 Memcached 安装与介绍
一:Memcached 介绍 ()官网网址:www.mamcached.org () 主要功能是:高性能,分布式的内存对象缓存系统. ()Nosql不仅仅是关系型数据库,显著特点key value ...