Git 使用

前端之家收集整理的这篇文章主要介绍了Git 使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
                                            <table class="text"&gt;<tbody><tr class="li1"&gt;

<td class="ln"><pre class="de1">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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108

用户         git config user.name         git config user.email     # 设置用户         git config --global user.name "username"         git config --global user.email "email"   创建仓库         git init   更新所有改动到暂存区         git add -u .   添加文件         git add   删除文件         git rm   提交         git commit -m   查看不同         git diff   查看提交历史         git log     移动文件         git mv     git add -A (自动更新更改到暂存区)     忽略规则         # 这是注释行,将被忽略     *.a       # 忽略所有以.a为扩展名的文件         !lib.a    # 但是名为lib.a的文件或目录不要忽略,即使前面设置了对*.a的忽略     /TODO     # 只忽略此目录下的TODO文件,子目录中的TODO文件不忽略     build/    # 忽略所有build目录下的文件,但如果是名为build的文件则不忽略     doc/*.txt # 忽略文件如doc/notes.txt,但是文件如doc/server/arch.txt不忽略     分支 - 新建分支         git branch - 查看当前分支         git branch - 删除分支 (不可以删除当前分支,需要先切换到其他分支)         git branch -d - 切换当前分支         git checkout - 切换到某个提交点         git checkout - 新建分支并切换         git checkout -b - 合并 (先切换到需要合并到的分支上)         git merge - 处理合并冲突         <<<<<<< HEAD     xxxxxx     ============     aaaaaa     >>>>>>>         需要手动决定该留哪一部分,之后 add + commit - 中止合并并回退         git merge --abort - 合并文件但不合并历史,将新分支的所有更改视为一次 commit         git merge --squash - 删除分支         git branch -d     远程         git remote add         git remote set-url         git remote rm         fetch,pull,push       Fetch命令从github.com抓取任何信息下载下来,把它放在远程追踪分支里。     git fetch     pull命令和fetch非常像,它将要拉取东西到/分支名字里,然后做合并操作合并到那个分支名字的本地版本里。     git pull     当我们的电脑完成工作时,并且我们准备把它发送到github.com,我们输入:     git push     它会把全部信息发送到github.com,现在,在做这个的过程中,它同时也会更新远端追踪的分支。     重置 (回滚):         git checkout # 回滚到某个 tag   详细:https://blog.csdn.net/ligang2585116/article/details/71094887   - mixed 模式 (默认)         git reset HEAD # 将最近一次 commit 撤销 - soft 模式         git reset --soft HEAD~5 # 将最近5次 commit 撤销 - hard 模式         git reset --hard HEAD~5 # 将最近5次 commit 撤销         git reset --hard # 强制回退到某个提交点     历史         git reflog     标签         git tag     git tag -a -m     git tag -a # 轻量级标签     git push # 同步标签到远程服务器     git push --tags # 同步所有标签到远程服务器 原文链接:https://www.f2er.com/git/411849.html

猜你在找的Git相关文章