安装git
使用git@osc
- 1. 配置账户
git config --global user.email admin@zjmainstay.cn
git config --global user.name "Zjmainstay"
git config --list //查看配置信息
git config --global --unset user.name //删除user.name
- 2. 生成SSH公钥
安装git,打开Git Bash
ssh-keygen -t rsa -C "admin@zjmainstay.cn"
一路回车,之后会生成id_rsa与id_rsa.pub
id_rsa.pub为公钥,把它贴到托管网站(如github, git@OSC)
在http://git.oschina.net/keys
添加一个公钥,把id_rsa.pub内容全部拷贝进去。
使用:
启用Git Bash,输入命令git clone `SSH地址`(别用HTTPS地址),在提示认证的时候输入yes,则可通过SSH认证访问
- 3. 本地创建git库
打开Git Bash,使用以下命令创建
mkdir Git-Test //创建目录
cd Git-Test //进入目录
git init //初始化,自动生成.git目录
touch README.md //创建README.md文件
git add README.md //添加文件到提交索引
git commit -m "first commit" //提交,提交信息为"first commit"
git remote add origin https://git.oschina.net/Zjmainstay/Git-Test.git //增加一个远程服务器端版本库,名称为origin
git push -u origin master //将本地master主枝代码更新到名为origin的远程版本库中
常用命令
远程git链接本地简化
git remote add zjcaptcha git@git.oschina.net:Zjmainstay/Joomla-Captcha-Plugin.git
将本地git档案与远程同步
git push origin #将本地代码更新到名为origin的远程版本库中
git push origin current-branch-name:remote-branch-name #将当前分支(current-branch-name)推送到远程版本库(remote-branch-name)中,remote-branch-name可以随意命名,当最好不要以“origin/”为前缀
将远程git档案与本地同步
git pull origin master #将origin这个版本库更新到本地的master主枝
git pull #如果有track,可以直接这么操作
将这个URL地址的远程版本库完全克隆到本地some_project目录下面
git clone git://github.com/someone/some_project.git some_project
从当前工作空间和索引中删除文件
git rm app/some_files
注意:要删除文件必须在git控制台中用上述命令删除一遍再同步到远程
查看历史日志
#普通版本
git log
#格式版本1(时间更人性化)
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cd [%cr]) %C(bold blue)<%an>%Creset' --abbrev-commit --date=iso --stat
#格式化版本2
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --stat
一次添加所有新增、修改文件
git add .
注:使用`git add *` 可能报错:`The following paths are ignored by one of your .gitignore files:`
git add path_to_file #添加一个文件
git add path_to_dir #添加一个目录及其目录中所有内容
查看当前git预提交状态
git status
获取帮助文档
git help git
忽略文件
修改 .gitignore文件,加入文件
如:
dir1/
file1.php
.project
关于remote的操作
git remote --help 可以看到所有用法。
git config
git config --list可以看到所有的配置。
git config --global 配置的参数,删除的时候也要带上global,如:
git config --global --unset remote.origin.url
普通参数,直接:
git config --unset remote.origin.url 即可
下载一个tag
git tag -l 可以查看tag列表
git clone url
git checkout -b v1.0.1
回复rm删除的文件
git ls-files -d | xargs git checkout --
fork版本合并
(1)clone 自己账号里fork的分支
$ git clone https://github.com/Zjmainstay/CurlMulti.git
(2)增加远程原始分支到本地(可以用 git remote -v 命令查看远程分支列表)
$ git remote -v
$ git remote add ares333 https://github.com/ares333/CurlMulti.git
(3)fetch原始源分支的新版本到本地
$ git fetch ares333
(4)合并两个版本的代码
$ git merge ares333/master
(5)把最新的代码提交到github自己的账号上
$ git push origin master
参考:http://www.tuicool.com/articles/MzMJre
移除
$ git config --system http.sslcainfo
的设置$ git config --system http.sslverify false
暂存修改 (最后一个index=0)
$ git stash
恢复暂存修改
# 查看所有的暂存数据
$ git stash list
#按index恢复
$ git stash apply --index=0
#恢复stash@{0}的数据(不会删除该暂存内容)
或
$ git stash pop
#恢复最后一个stash,即stash@{0},同时删除暂存内容
查看暂存内容
$ git stash show stash@{0}
删除暂存内容
$ git stash drop stash@{0}
git比较
#比较两个分支
git diff branch_name1 branch_name2
#比较两个分支的一个文件
git diff branch_name1 branch_name2 filepath_to_filename
#比较两个提交(commit)
git diff commit_id1 commit_id2
注:git log 可以得到commit_id
#比较两个提交(commit)的文件
git diff commit_id1 commit_id2 filepath_to_filename
获取一个commit作为分支
#1. 获取commit_id
git log
#2. 使用该提交创建新分支
git co -b new_branch commit_id
修改内容回复
git co -- path_to_file
从某个分支或者commit中下载某个文件
git co branch-name path_to_file
git co commit-id path_to_file
删除本地分支
git br -D branch-name
删除远程分支
git co branch-name path_to_file
git co commit-id path_to_file
git区分大小写
git config core.ignorecase false
fatal: cannot exec 'git-st': Permission denied
使用git alias命令git st提示如下错误:
fatal: cannot exec 'git-st': Permission denied
参考stackoverflow上的解答,使用如下方法解决。
安装strace
apt-get install strace
使用strace执行git st
strace -f -e execve git st
根据输出结果进行修正,我的错误在于$PATH变量设置有误。
或者,使用命令
echo $PATH |tr ':' '\n' |xargs ls -ld
提示权限不够的目录给予权限或从$PATH中移除即可。
报错:
error: there are still refs under 'refs/remotes/origin/app2.0'
error: Cannot lock the ref 'refs/remotes/origin/app2.0'.
From git.jiudouyu.com.cn:root/9douyu-server
解决:
git remote prune origin
全局配置文件&git快捷命令
.gitconfig (下载.gitconfig)
.git-completion.bash (下载.git-completion)
.gitignore_global
vi .bashrc 加入 source ~/.git-completion.bash
~/.gitconfig
[user]
name = Zjmainstay
email = admin@zjmainstay.cn
[core]
excludesfile = ~/.gitignore_global
editor = /usr/bin/vim
[mergetool "sourcetree"]
cmd = /usr/local/bin/ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
trustExitCode = true
[alias]
co = checkout
ci = commit
st = status
br = branch
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cd [%cr]) %C(bold blue)<%an>%Creset' --abbrev-commit --date=iso --stat
[color]
branch = true
ui = true
diff = true
interactive = true
status = true
参考文档
- https://git-scm.com/book/zh/v1
- http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000
- https://www.cnblogs.com/Sungeek/p/9152223.html
未经同意禁止转载!
转载请附带本文原文地址:git常用命令教程,首发自 Zjmainstay学习笔记