Gitgit及github学习

GIT 命令

2019-08-05  本文已影响6人  unual_

官方教程地址

配置

两个git账号共存

取消全局的用户名和邮箱,在本地各自工作目录设置(eg.D:/code/project)
git config --global --unset user.user
git config --global --unset user.email
git config user.name "username"
git config user.email "email"

#~/.ssh/git_credentails文件
#github 和 gitlab 账号密码共存
https://username:password@github.com
http://username:password@git.xxx.com

远程仓库

分支

新开分支及合并

1.开发某个网站。
2.为实现某个新的需求,创建一个分支。
3.在这个分支上开展工作。
正在此时,你突然接到一个电话说有个很严重的问题需要紧急修补。 你将按照如下方式来处理:
1.切换到你的线上分支(production branch)。
2.为这个紧急任务新建一个分支,并在其中修复它。
3.在测试通过之后,切换回线上分支,然后合并这个修补分支,最后将改动推送到线上分支。
4.切换回你最初工作的分支上,继续工作。

新开分支,开发新需求
git checkout -b iss53
vim index.html
git commit -a -m 'added a new footer [issue 53]'
回到线上分支
git checkout master
从线上分支拉出新分支,改bug
git checkout -b hotfix
vim index.html
git commit -a -m 'fixed the bug'
回到线上分支,将修改bug分支合并
git checkout master
git merge hotfix
#可能会遇到冲突

#Auto-merging index.html
#CONFLICT (content): Merge conflict in index.html
#Automatic merge failed; fix conflicts and then commit the result.

git commit -a -m 'merge'
git branch -d hotfix

一个冲突解决示例

撤销提交

重置到git commit,重置提交记录

文件操作

git log --pretty="%h - %an - %s - %cd" .gitignore
a1ba2eb - unual - modified .gitignore - Tue Jul 30 21:35:38 2019 +0800
20d3401 - unual - 第一次提交 - Tue Jul 30 21:08:39 2019 +0800

%H      提交对象(commit)的完整哈希字串
%h      提交对象的简短哈希字串
%T      树对象(tree)的完整哈希字串
%t      树对象的简短哈希字串
%P      父对象(parent)的完整哈希字串
%p      父对象的简短哈希字串
%an     作者(author)的名字
%ae     作者的电子邮件地址
%ad     作者修订日期(可以用 -date= 选项定制格式)
%ar     作者修订日期,按多久以前的方式显示
%cn     提交者(committer)的名字
%ce     提交者的电子邮件地址
%cd     提交日期
%cr     提交日期,按多久以前的方式显示
%s      提交说明

作者:北山学者
链接:https://www.jianshu.com/p/15838b8b44c0
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。
#所有空行或者以 # 开头的行都会被 Git 忽略。
#可以使用标准的 glob 模式匹配。
#匹配模式可以以(/)开头防止递归。
#匹配模式可以以(/)结尾指定目录。
#要忽略指定模式以外的文件或目录,可以在模式前加上惊叹号(!)取反。

# no .a files
*.a

# but do track lib.a, even though you're ignoring .a files above
!lib.a

# only ignore the TODO file in the current directory, not subdir/TODO
/TODO

# ignore all files in the build/ directory
build/

# ignore doc/notes.txt, but not doc/server/arch.txt
doc/*.txt

# ignore all .pdf files in the doc/ directory
doc/**/*.pdf
上一篇 下一篇

猜你喜欢

热点阅读