This repository has been archived by the owner on Aug 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git
75 lines (56 loc) · 2.02 KB
/
git
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
> global config
git config --global user.email '[email protected]'
git config --global user.name 'V'
git config --global core.editor vim
> 添加远程仓库
git remote add origin https://xxx.com/project
> 查看远程仓库信息
git remote -v
> 查看某一个远程仓库的信息
git remote show remote-repository-name
> 删除远程仓库已被移除的分支
git remote prune repository-name
> 设置 http[s] 链接只询问一次账户信息
git config [-global] credential.helper store
> 拉取远程分支,并在本地新建分支,且建立映射关系
git checkout -b local-branch remote-branch
> 推送当前分支并建立与远程上游的跟踪
git push --set-upstream origin release/1.2.320
git fetch --all #下载远程的库的内容,不做任何的合并
git reset --hard origin/master #把HEAD指向刚刚下载的最新的版本
git pull
> clear git cache
先修改 .gitignore
再清空 git 缓存
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
> git branch
git branch -a
git checkout -b new_branch
git checkout main
git branch -d new_branch
git push origin --delete new_branch
> git reset modify
# 撤销 git add
git reset <file>
# 撤销 git commit
git reset --xx
--mixed 不删除工作空间改动代码,撤销commit,并撤销git add . 默认参数, 等价于 git reset HEAD^
--soft 不删除工作空间改动代码,撤销commit,不撤销git add .
--hard 删除工作空间改动代码,撤销commit,并撤销git add .
# 丢弃工作区的修改
git checkout -- <file>
git clean -df <file>
# git 远程仓库回退版本
1.首先将本地仓库版本回退到自己想要的版本。git log
2.回退本地版本库 git reset commit_id
3.将回退后的版本强制推送到远程仓库。git push -f origin master
> 查看某个文件的修改
git log --pretty=oneline 文件名
git show hash
> 忽略文件的权限
git config core.filemode false
git config --global core.fileMode false
> 检索 git log
git log --graph --author='your name' --format='%H|%cn|%s' | grep 'keyword'