-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGit_GitHub_01.html
1290 lines (701 loc) · 37 KB
/
Git_GitHub_01.html
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head hexo-theme='https://volantis.js.org/#2.1.2'>
<meta charset="utf-8">
<!-- SEO相关 -->
<!-- 渲染优化 -->
<meta name="renderer" content="webkit">
<meta name="force-rendering" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="HandheldFriendly" content="True" >
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- 页面元数据 -->
<title>版本控制及Git简介 - CRainyDay</title>
<meta name="keywords" content="Git,GitHub">
<meta name="description" content="版本控制思想及简单介绍.
版本控制工具: SVN、Git等.
Git的简单介绍.">
<!-- feed -->
<!-- import meta -->
<!-- link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/[email protected]/dist/jquery.fancybox.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/waves.min.css">
<link rel="shortcut icon" type='image/x-icon' href="https://cdn.jsdelivr.net/gh/crainyday/blog@master/favicon.ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/APlayer.min.css">
<!-- import link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/crainyday/blog@master/css/style.css">
<script>
function setLoadingBarProgress(num) {
document.getElementById('loading-bar').style.width=num+"%";
}
</script>
<!-- ba -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?bf368df5385d5be3472f3155e4cdb303";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<div id="loading-bar-wrapper">
<div id="loading-bar"></div>
</div>
<header class="l_header shadow floatable blur">
<div class='wrapper'>
<div class='nav-sub container--flex'>
<a class="logo flat-box"></a>
<ul class='switcher h-list'>
<li><a class="s-comment flat-btn fas fa-comments fa-fw" target="_self" href='javascript:void(0)'></a></li>
<li><a class="s-toc flat-btn fas fa-list fa-fw" target="_self" href='javascript:void(0)'></a></li>
</ul>
</div>
<div class="nav-main container container--flex">
<a class="logo flat-box" target="_self" href='/'>
<i class='fas fa-home'></i>
CRainyDay
</a>
<div class='menu navigation'>
<ul class='h-list'>
<li>
<a class="flat-box" href=/categories/
id="categories"
>
<i class='fas fa-folder-open fa-fw'></i>
分类
</a>
</li>
<li>
<a class="flat-box" href=/archives/
id="archives"
>
<i class='fas fa-archive fa-fw'></i>
归档
</a>
</li>
<li>
<a class="flat-box" href=/tags/
id="tags"
>
<i class='fas fa-tags fa-fw'></i>
标签
</a>
</li>
<li>
<a class="flat-box" href=/friends/
id="friends"
>
<i class='fas fa-link fa-fw'></i>
友链
</a>
</li>
<li>
<a class="flat-box"
>
<i class='fas fa-ellipsis-v fa-fw'></i>
更多
</a>
<ul class="submenu">
<li>
<a class="flat-box" href=/about/music.html
id="aboutmusic.html"
>
<i class='fas fa-music fa-fw'></i>
往后余生
</a>
</li>
<hr>
<li>
<a class="flat-box" href=/bbs/
id="bbs"
>
<i class='fas fa-comment-alt fa-fw'></i>
留言
</a>
</li>
<hr>
<li>
<a class="flat-box" href=/about/
id="about"
>
<i class='fas fa-info-circle fa-fw'></i>
关于
</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="m_search">
<form name="searchform" class="form u-search-form">
<i class="icon fas fa-search fa-fw"></i>
<input type="text" class="input u-search-input" placeholder="搜索" />
</form>
</div>
<ul class='switcher h-list'>
<li><a class="s-search flat-btn fas fa-search fa-fw" target="_self" href='javascript:void(0)'></a></li>
<li><a class="s-menu flat-btn fas fa-bars fa-fw" target="_self" href='javascript:void(0)'></a></li>
</ul>
</div>
</div>
</header>
<ul class="menu-phone navigation white-box">
<li>
<a class="flat-box" href=/
id="home"
>
<i class='fas fa-home fa-fw'></i>
博客
</a>
</li>
<li>
<a class="flat-box" href=/archives/
id="archives"
>
<i class='fas fa-archive fa-fw'></i>
归档
</a>
</li>
<li>
<a class="flat-box" href=/categories/
id="categories"
>
<i class='fas fa-folder-open fa-fw'></i>
分类
</a>
</li>
<li>
<a class="flat-box" href=/friends/
id="friends"
>
<i class='fas fa-link fa-fw'></i>
友链
</a>
</li>
<li>
<a class="flat-box" href=/bbs/
id="bbs"
>
<i class='fas fa-comment-alt fa-fw'></i>
留言
</a>
</li>
<li>
<a class="flat-box" href=/about/
id="about"
>
<i class='fas fa-info-circle fa-fw'></i>
关于
</a>
</li>
</ul>
<script>setLoadingBarProgress(40);</script>
<div class="l_body nocover">
<div class='body-wrapper'>
<div class='l_main'>
<article id="post" class="post white-box shadow floatable article-type-post" itemscope itemprop="blogPost">
<section class='meta'>
<a title='版本控制及Git简介' href='/Git_GitHub_01.html'><img class='thumbnail' src='https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/more/more07.png'></a>
<div class="meta" id="header-meta">
<h1 class="title">
<a href="/Git_GitHub_01.html">
版本控制及Git简介
</a>
</h1>
<div class='new-meta-box'>
<div class='new-meta-item author'>
<a href="https://crainyday.gitee.io" rel="nofollow">
<img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/avatar.png">
<p>crainyday</p>
</a>
</div>
<div class='new-meta-item category'>
<a href='/categories/GitHub/' rel="nofollow">
<i class="fas fa-folder-open" aria-hidden="true"></i>
<p>Git / GitHub</p>
</a>
</div>
<div class="new-meta-item date">
<a class='notlink'>
<i class="fas fa-edit" aria-hidden="true"></i>
<p>发布于:2020年3月26日</p>
</a>
</div>
<div class="new-meta-item wordcount">
<a class='notlink'>
<i class="fas fa-keyboard" aria-hidden="true"></i>
<p>字数:719字</p>
</a>
</div>
<div class="new-meta-item readtime">
<a class='notlink'>
<i class="fas fa-hourglass-half" aria-hidden="true"></i>
<p>时长:2分钟</p>
</a>
</div>
</div>
<hr>
</div>
</section>
<section class="article typo">
<div class="article-entry" itemprop="articleBody">
<p>版本控制思想及简单介绍.</p>
<p>版本控制工具: SVN、Git等.</p>
<p>Git的简单介绍.</p>
<a id="more"></a>
<h2 id="1-版本控制">1.版本控制</h2>
<h3 id="①为什么要进行版本控制">①为什么要进行版本控制</h3>
<blockquote>
<p> 对于个人来说:</p>
<ul>
<li>版本管理: 方便我们对代码版本的管理与维护.</li>
<li>数据备份: 能够保存整个项目所有的修改历史, 目录和文件的内容及状态. 当我们不小心<red>"永久删除"</red>了不该删除的文件时, 仍旧可以恢复.</li>
<li>分支管理: 可以根据正在开发管理的分支, 生成一个新的分支, 利用新的分支去完成一些新的功能, 而不影响主分支的运行, 就算是新分支开发失败, 直接删除就OK, 不会影响主分支. <red>你可以将分支理解为和原来一模一样的一个新的项目.</red></li>
<li>等等…</li>
</ul>
</blockquote>
<blockquote>
<p> 对于团队来说:</p>
<ul>
<li>上述对于个人开发者的好处不用再提.</li>
<li>协同开发: 支持多人同时修改服务器端的同一个文件. 当然, 你得先将服务器端的项目Pull一下, 才能向服务器Push你的代码.</li>
<li>权限控制: 可以严格的控制团队中的开发人员的权限. 其中Git工具支持, 对团队外开发者的代码进行审核并合并.</li>
<li>等等…</li>
</ul>
</blockquote>
<h3 id="②版本控制工具">②版本控制工具</h3>
<div class="success">
<p> 版本控制工具分为: 集中式和分布式两种.</p>
<ul>
<li>集中式版本控制工具: SVN、CVS、VSS…一旦集中式的服务器单点故障, 一首《凉凉》吧.</li>
<li>分布式版本控制工具: Git、Bazaar、Darcs、Mercurial…</li>
</ul>
</div>
<p>现在为止, 最好用的, 也是最火的, 就是------<red>Git</red>.</p>
<hr>
<h2 id="2-Git">2.Git</h2>
<h3 id="Git的来历">Git的来历</h3>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/Git/Git_GitHub_01_01.png" alt="Git_GitHub_01_01"></p>
<h3 id="Git的优势">Git的优势</h3>
<blockquote>
<ul>
<li>大部分操作本地即可完成,无需联网.</li>
<li>完整性保证(hash运算).</li>
<li>尽可能添加数据而不是删除或修改数据.</li>
<li>分支操作非常快捷流畅.</li>
<li>与 Linux 命令全面兼容(因为它的出现, 一开始就是为了管理Linux代码).</li>
</ul>
</blockquote>
<h3 id="Git的安装">Git的安装</h3>
<blockquote>
<p>直接在<a href="https://git-scm.com/" target="_blank" rel="noopener">官网</a>下载安装包安装即可, <a href="https://git-scm.com/download/win" target="_blank" rel="noopener">Git For Windows</a>系统安装过程中注意:</p>
<ul>
<li>安装到无空格非中文目录.</li>
<li>建议使用Vim编辑器作为Git的默认编辑器.</li>
<li>Use Git From Git Bash Only, 无需修改系统Path变量仅在GitBash中使用Git即可.</li>
<li>剩下的就是无脑Next, 然后点击Install, 等待安装结束.</li>
</ul>
</blockquote>
<ul>
<li>这里我用的是Ubuntu客户端.</li>
</ul>
<figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br></pre></td><td class="code"><pre><span class="line">sudo add-apt-repository ppa:git-core/ppa</span><br><span class="line">sudo apt-get update</span><br><span class="line">sudo apt-get install git</span><br><span class="line"><span class="meta">#</span><span class="bash"> 查看git版本, 有输出即安装成功</span></span><br><span class="line">git --version</span><br></pre></td></tr></table></figure>
<h3 id="Git的结构">Git的结构</h3>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/Git/Git_GitHub_01_02.png" alt="Git_GitHub_01_02"></p>
<h3 id="Git与Git代码托管中心">Git与Git代码托管中心</h3>
<ul>
<li>
<p>局域网环境下:</p>
<ul>
<li>GitLab服务器------可以<a href="/Git_GitHub_04.html">自己搭建</a></li>
</ul>
</li>
<li>
<p>外网环境下:</p>
<ul>
<li><a href="https://github.com/" target="_blank" rel="noopener">GitHub</a></li>
<li><a href="https://gitee.com/" target="_blank" rel="noopener">码云</a></li>
<li><a href="http://git.oschina.net/" target="_blank" rel="noopener">开源中国</a></li>
<li><a href="https://about.gitlab.com/" target="_blank" rel="noopener">GitLab</a></li>
<li>…</li>
</ul>
</li>
</ul>
<h3 id="利用本地库和远程库完成团队内协作">利用本地库和远程库完成团队内协作</h3>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/Git/Git_GitHub_01_03.png" alt="Git_GitHub_01_03"></p>
<h3 id="利用本地库和远程库完成跨团队协作">利用本地库和远程库完成跨团队协作</h3>
<p><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/Git/Git_GitHub_01_04.png" alt="Git_GitHub_01_04"></p>
<br>
<section class="widget copyright desktop mobile">
<div class='content'>
<blockquote>
<p>博客内容遵循 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议</p>
<p>本文永久链接是:<a href=https://crainyday.gitee.io/Git_GitHub_01.html>https://crainyday.gitee.io/Git_GitHub_01.html</a></p>
</blockquote>
</div>
</section>
<section class="widget qrcode desktop mobile">
<div class='content article-entry'>
<fancybox><img src='https://cdn.jsdelivr.net/gh/crainyday/blog@master/alipay.png'
height='64px'
></fancybox>
<fancybox><img src='https://cdn.jsdelivr.net/gh/crainyday/blog@master/wechat.png'
height='64px'
></fancybox>
</div>
</section>
</div>
<section class='meta' id="footer-meta">
<div class='new-meta-box'>
<div class="new-meta-item date" itemprop="dateUpdated" datetime="2021-02-24T13:22:29+08:00">
<a class='notlink'>
<i class="fas fa-save" aria-hidden="true"></i>
<p>更新于:2021年2月24日</p>
</a>
</div>
<div class="new-meta-item meta-tags"><a class="tag" href="/tags/Git/" rel="nofollow"><i class="fas fa-hashtag" aria-hidden="true"></i><p>Git</p></a></div> <div class="new-meta-item meta-tags"><a class="tag" href="/tags/GitHub/" rel="nofollow"><i class="fas fa-hashtag" aria-hidden="true"></i><p>GitHub</p></a></div>
<div class="new-meta-item wordcount">
<a class='notlink'>
<i class="fas fa-keyboard" aria-hidden="true"></i>
<p>字数:719字</p>
</a>
</div>
<div class="new-meta-item readtime">
<a class='notlink'>
<i class="fas fa-hourglass-half" aria-hidden="true"></i>
<p>时长:2分钟</p>
</a>
</div>
<div class="new-meta-item share -mob-share-list">
<div class="-mob-share-list share-body">
<a class="-mob-share-qq" title="" rel="external nofollow noopener noreferrer"
href="http://connect.qq.com/widget/shareqq/index.html?url=https://crainyday.gitee.io/Git_GitHub_01.html&title=版本控制及Git简介 - CRainyDay&pics=https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/more/more07.png&summary=版本控制思想及简单介绍.
版本控制工具: SVN、Git等.
Git的简单介绍."
>
<img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/logo/128/qq.png">
</a>
<a class="-mob-share-qzone" title="" rel="external nofollow noopener noreferrer"
href="https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=https://crainyday.gitee.io/Git_GitHub_01.html&title=版本控制及Git简介 - CRainyDay&pics=https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/more/more07.png&summary=版本控制思想及简单介绍.
版本控制工具: SVN、Git等.
Git的简单介绍."
>
<img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/logo/128/qzone.png">
</a>
<a class="-mob-share-weibo" title="" rel="external nofollow noopener noreferrer"
href="http://service.weibo.com/share/share.php?url=https://crainyday.gitee.io/Git_GitHub_01.html&title=版本控制及Git简介 - CRainyDay&pics=https://cdn.jsdelivr.net/gh/crainyday/blog@master/imgs/more/more07.png&summary=版本控制思想及简单介绍.
版本控制工具: SVN、Git等.
Git的简单介绍."
>
<img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/logo/128/weibo.png">
</a>
<div class='hoverbox'>
<a><img src="https://cdn.jsdelivr.net/gh/crainyday/blog@master/lazyload.svg" data-original="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/logo/128/wechat.png"></a>
<div class='target'>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAEYCAAAAACi5bZQAAAC9ElEQVR42u3aQXLCQAwEQP7/6eQDodiRZLBC7w3Kht32ZUrjx4/153ogAAMGDBgwYNbAPIrr5R88uf7086v7n+2jex4wYMCAAQMGzD6Y4wAUbqgL14VOzwMGDBgwYMCA2QtzGrCmrp8KimP7AwMGDBgwYMB8LUwVoHtgMGDAgAEDBgyYdwe804HWFCAYMGDAgAED5v/CxAXVUICb+p/bNJFgwIABAwYMmLfBpOv0AJ/6XD4PGDBgwIABA2YNTHd1C7dXA6d0sNU+DxgwYMCAAQNmDUw1IE0NoE73kRZoVVgwYMCAAQMGzB6YbtGWwl39IKr/AwYMGDBgwIDZD9MNVqe/WwVIB1XpAA0MGDBgwIABsw+mWoxNHbxaqHX3BQYMGDBgwIDZC5MGtu5Bu2BxgZYGSDBgwIABAwbMGpjuQKh6gGqRlhaA7cINDBgwYMCAAXNbmOqgJw2CUwGtWwTGgyowYMCAAQMGzG1hqgXY1KDpqmKtWuiBAQMGDBgwYPbAdAdJ3QLtFDoNbGngAwMGDBgwYMDsg+kWWOn9Y8VYGDyPzwEGDBgwYMCAWQMzVVRdHcCqg612EwkGDBgwYMCAuT3M6ecq1Ongqxr0xgImGDBgwIABA2YNzFQx1gVKi750HT9wMGDAgAEDBswamDQApaDVQq17fRkMDBgwYMCAAbMOZuqFnKkAl+7r7YUbGDBgwIABA+a2MFcFvfRFoanAeBwQwYABAwYMGDBrYarFVXeQVA2a5ReEnn0PBgwYMGDAgFkD013V4Nct7NIXlo6vBwMGDBgwYMCsgekGpTQAVou60/vSQRgYMGDAgAEDZj9Md1B1VbA7vW+sAAQDBgwYMGDArIWZHhSlRVt1cHV5EwkGDBgwYMCA+TqY9HfSwFkFfroPMGDAgAEDBszXwXwKrBvojgs3MGDAgAEDBsztYa4KUqe/M1XclfcFBgwYMGDAgFkH0y2u0oNXi7sUIn7AYMCAAQMGDJg1MBYYMGDAgAEDZtn6BcTf5vAHdrj0AAAAAElFTkSuQmCC">
</div>
</div>
</div>
</div>
</div>
</section>
<div class="prev-next">
<a class='prev' href='/Git_GitHub_02.html'>
<p class='title'><i class="fas fa-chevron-left" aria-hidden="true"></i>Git的常用命令</p>
<p class='content'>Git的常用命令:
123456789101112131415161718192021222324252627282930git initgit config user.name xxxgit ...</p>
</a>
<a class='next' href='/Ubuntu_006.html'>
<p class='title'>Ubuntu安装v2ray<i class="fas fa-chevron-right" aria-hidden="true"></i></p>
<p class='content'>v2ray简介。
配置v2ray服务端。
配置v2ray客户端:
1.v2ray-core
2.v2ray客户端界面
v2ray免费账号分享。
飞机场分享。
1.简介
其实,v2ra...</p>
</a>
</div>
</section>
</article>
<section class="widget related_posts shadow floatable desktop mobile">
<header>
<i class="fas fa-bookmark fa-fw" aria-hidden="true"></i><span class='name'>相关文章</span>
</header>
<div class="content">
<ul class="popular-posts"><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_04.html" title="安装Gitlab" rel="bookmark">安装Gitlab</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_03.html" title="Eclipse中使用Git" rel="bookmark">Eclipse中使用Git</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_02.html" title="Git的常用命令" rel="bookmark">Git的常用命令</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Hexo2.html" title="利用Hexo和GitHub搭建一个静态博客" rel="bookmark">利用Hexo和GitHub搭建一个静态博客</a></h3></div></li></ul>
</div>
</section>
<!-- 显示推荐文章和评论 -->
<article class="post white-box comments shadow floatable">
<section class="article typo">
<p ct><i class='fas fa-comments'></i> 评论</p>
<section id="comments">
<div id="valine_container" class="valine_thread">
<i class="fas fa-spinner fa-spin fa-fw"></i>
</div>
</section>
</section>
</article>
<!-- 根据页面mathjax变量决定是否加载MathJax数学公式js -->
<script>
window.subData = {
title: '版本控制及Git简介',
tools: true
}
</script>
</div>
<aside class='l_side'>
<section class="widget related_posts shadow floatable desktop mobile">
<header>
<i class="fas fa-bookmark fa-fw" aria-hidden="true"></i><span class='name'>相关文章</span>
</header>
<div class="content">
<ul class="popular-posts"><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_04.html" title="安装Gitlab" rel="bookmark">安装Gitlab</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_03.html" title="Eclipse中使用Git" rel="bookmark">Eclipse中使用Git</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Git_GitHub_02.html" title="Git的常用命令" rel="bookmark">Git的常用命令</a></h3></div></li><li class="popular-posts-item"><div class="popular-posts-title"><h3><a href="/Hexo2.html" title="利用Hexo和GitHub搭建一个静态博客" rel="bookmark">利用Hexo和GitHub搭建一个静态博客</a></h3></div></li></ul>
</div>
</section>
<section class="widget grid shadow floatable desktop mobile">
<header>
<i class="fas fa-map-signs fa-fw" aria-hidden="true"></i><span class='name'>实用文档</span>
</header>
<div class='content'>
<div class="grid navigation fixed">
<a class="flat-box" title="/maven_05.html" href="/maven_05.html"
id="maven_05.html">
<i class="fas fa-file fa-fw" aria-hidden="true"></i>
Maven工程
</a>
<a class="flat-box" title="/Flask.html" href="/Flask.html"
id="Flask.html">
<i class="fas fa-file fa-fw" aria-hidden="true"></i>
Flask应用
</a>
<a class="flat-box" title="/Hexo.html" href="/Hexo.html"
id="Hexo.html">
<i class="fas fa-file fa-fw" aria-hidden="true"></i>
Gitee搭站
</a>
<a class="flat-box" title="/Ubuntu_006.html" href="/Ubuntu_006.html"
id="Ubuntu_006.html">
<i class="fas fa-file fa-fw" aria-hidden="true"></i>
v2ray
</a>
</div>
</div>
</section>
<section class="widget toc-wrapper shadow floatable desktop mobile">
<header>
<i class="fas fa-list fa-fw" aria-hidden="true"></i><span class='name'>本文目录</span>
</header>
<div class='content'>
<ol class="toc"><li class="toc-item toc-level-2"><a class="toc-link" href="#1-版本控制"><span class="toc-text">1.版本控制</span></a><ol class="toc-child"><li class="toc-item toc-level-3"><a class="toc-link" href="#①为什么要进行版本控制"><span class="toc-text">①为什么要进行版本控制</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#②版本控制工具"><span class="toc-text">②版本控制工具</span></a></li></ol></li><li class="toc-item toc-level-2"><a class="toc-link" href="#2-Git"><span class="toc-text">2.Git</span></a><ol class="toc-child"><li class="toc-item toc-level-3"><a class="toc-link" href="#Git的来历"><span class="toc-text">Git的来历</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Git的优势"><span class="toc-text">Git的优势</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Git的安装"><span class="toc-text">Git的安装</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Git的结构"><span class="toc-text">Git的结构</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Git与Git代码托管中心"><span class="toc-text">Git与Git代码托管中心</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#利用本地库和远程库完成团队内协作"><span class="toc-text">利用本地库和远程库完成团队内协作</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#利用本地库和远程库完成跨团队协作"><span class="toc-text">利用本地库和远程库完成跨团队协作</span></a></li></ol></li></ol>
</div>
</section>
</aside>
<footer class="clearfix ">
<br><br>
<div class="aplayer-container">
<meting-js
theme='#1BCDFC'
autoplay='false'
volume='0.7'
loop='all'
order='list'
fixed='true'
list-max-height='340px'
server='netease'
type='playlist'
id='2709912289'
list-folded='true'>