-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-bash-data
More file actions
1356 lines (1067 loc) · 42.3 KB
/
Copy pathgit-bash-data
File metadata and controls
1356 lines (1067 loc) · 42.3 KB
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
# log of git-bash (learngit repository)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit
$ git init
Initialized empty Git repository in D:/myBooks/Git/learngit/.git/
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "wrote a readme file"
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: empty ident name (for <(null)>) not allowed
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git config --global user.email "liugenxian2015@gmail.com"
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git config --global user.name "liugenxian"
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "wrote a readme file"
[master (root-commit) 5b807d1] wrote a readme file
1 file changed, 2 insertions(+)
create mode 100644 readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git diff readme.txt
diff --git a/readme.txt b/readme.txt
index d8036c1..013b5bc 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,2 +1,2 @@
-Git is a version control system.
+Git is a distributed version control system.
Git is free software.
\ No newline at end of file
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "add distributed"
[master 0ccfa0c] add distributed
1 file changed, 1 insertion(+), 1 deletion(-)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
nothing to commit, working tree clean
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git diff
diff --git a/readme.txt b/readme.txt
index 013b5bc..99e0e11 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,2 +1,2 @@
Git is a distributed version control system.
-Git is free software.
\ No newline at end of file
+Git is free software distributed under the GPL.
\ No newline at end of file
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "append GPL"
[master 2b69123] append GPL
1 file changed, 1 insertion(+), 1 deletion(-)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git log
commit 2b69123ac271bb765024665065a49a6605670b6f
Author: liugenxian <liugenxian2015@gmail.com>
Date: Thu Feb 9 22:18:12 2017 +0800
append GPL
commit 0ccfa0c7e3e1b49a8ab71958d4bcb629cfb61d84
Author: liugenxian <liugenxian2015@gmail.com>
Date: Thu Feb 9 22:08:21 2017 +0800
add distributed
commit 5b807d1f245061034f0d8c9f3903c3a7ed92f101
Author: liugenxian <liugenxian2015@gmail.com>
Date: Thu Feb 9 21:55:29 2017 +0800
wrote a readme file
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git log --pretty==oneline
fatal: invalid --pretty format: =oneline
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git reset --hard HEAD^
HEAD is now at 0ccfa0c add distributed
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ cat readme.txt
Git is a distributed version control system.
Git is free software.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git log
commit 0ccfa0c7e3e1b49a8ab71958d4bcb629cfb61d84
Author: liugenxian <liugenxian2015@gmail.com>
Date: Thu Feb 9 22:08:21 2017 +0800
add distributed
commit 5b807d1f245061034f0d8c9f3903c3a7ed92f101
Author: liugenxian <liugenxian2015@gmail.com>
Date: Thu Feb 9 21:55:29 2017 +0800
wrote a readme file
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git reset --hard 2b6912
HEAD is now at 2b69123 append GPL
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git log
commit 2b69123ac271bb765024665065a49a6605670b6f
Author: liugenxian <liugenxian2015@gmail.com>
Date: Thu Feb 9 22:18:12 2017 +0800
append GPL
commit 0ccfa0c7e3e1b49a8ab71958d4bcb629cfb61d84
Author: liugenxian <liugenxian2015@gmail.com>
Date: Thu Feb 9 22:08:21 2017 +0800
add distributed
commit 5b807d1f245061034f0d8c9f3903c3a7ed92f101
Author: liugenxian <liugenxian2015@gmail.com>
Date: Thu Feb 9 21:55:29 2017 +0800
wrote a readme file
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git reflog
2b69123 HEAD@{0}: reset: moving to 2b6912
0ccfa0c HEAD@{1}: reset: moving to HEAD^
2b69123 HEAD@{2}: commit: append GPL
0ccfa0c HEAD@{3}: commit: add distributed
5b807d1 HEAD@{4}: commit (initial): wrote a readme file
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
LICENSE.txt
learn-note.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
LICENSE
learn-note.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git diff
diff --git a/readme.txt b/readme.txt
index 99e0e11..cb62dc1 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,2 +1,3 @@
Git is a distributed version control system.
-Git is free software distributed under the GPL.
\ No newline at end of file
+Git is free software distributed under the GPL.
+Git has a mutable index called stage.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add LICENSE
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: LICENSE
modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "understand how stage works"
[master b4a2026] understand how stage works
2 files changed, 5 insertions(+), 1 deletion(-)
create mode 100644 LICENSE
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "git tracks changes"
[master dbdd52c] git tracks changes
1 file changed, 1 insertion(+)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git diff HEAD -- readme.txt
diff --git a/readme.txt b/readme.txt
index 76d770f..a9c5755 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,4 +1,4 @@
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
-Git tracks changes.
+Git tracks changes of files.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "git tracks changes"
[master 0bb9eb8] git tracks changes
1 file changed, 1 insertion(+), 1 deletion(-)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git checkout -- readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add test.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "add test.txt"
[master 81fa19a] add test.txt
1 file changed, 1 insertion(+)
create mode 100644 test.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ rm test.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: test.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git checkout -- test.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ ssh-keygen -t rsa -C "liugenxian2015@gmail.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa.
Your public key has been saved in /c/Users/Administrator/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:SP3nf8q3nJSoRtkA/LdBf1LJE9Q7lmCZwJk9TvEnf9c liugenxian2015@gmail.com
The key's randomart image is:
+---[RSA 2048]----+
| . ..=.*o+|
| . o + X.+o|
| . . o = =o=|
| . . . o +.O+|
| . S . * +.E|
| = o. +|
| . .. o |
| ..oo +|
| .. +B.|
+----[SHA256]-----+
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git remote add origin git@github.com:sky2046/learngit.git
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git push -u origin master
The authenticity of host 'github.com (192.30.253.112)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.253.112' (RSA) to the list of known hosts.
Counting objects: 22, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (22/22), 1.80 KiB | 0 bytes/s, done.
Total 22 (delta 5), reused 0 (delta 0)
remote: Resolving deltas: 100% (5/5), done.
To github.com:sky2046/learngit.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git branch
dev
* master
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git merge dev
Updating 81fa19a..107c544
Fast-forward
readme.txt | 1 +
1 file changed, 1 insertion(+)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
Creating a new branch is quick.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git branch
dev
* master
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git branch -d dev
Deleted branch dev (was 107c544).
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git push origin master
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 363 bytes | 0 bytes/s, done.
Total 3 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1), completed with 1 local objects.
To github.com:sky2046/learngit.git
81fa19a..107c544 master -> master
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git checkout -b feature1
Switched to a new branch 'feature1'
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (feature1)
$ git push origin feature1
Total 0 (delta 0), reused 0 (delta 0)
To github.com:sky2046/learngit.git
* [new branch] feature1 -> feature1
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (feature1)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (feature1)
$ git commit -m
error: switch `m' requires a value
usage: git commit [<options>] [--] <pathspec>...
-q, --quiet suppress summary after successful commit
-v, --verbose show diff in commit message template
Commit message options
-F, --file <file> read message from file
--author <author> override author for commit
--date <date> override date for commit
-m, --message <message>
commit message
-c, --reedit-message <commit>
reuse and edit message from specified commit
-C, --reuse-message <commit>
reuse message from specified commit
--fixup <commit> use autosquash formatted message to fixup specified commit
--squash <commit> use autosquash formatted message to squash specified commit
--reset-author the commit is authored by me now (used with -C/-c/--amend)
-s, --signoff add Signed-off-by:
-t, --template <file>
use specified template file
-e, --edit force edit of commit
--cleanup <default> how to strip spaces and #comments from message
--status include status in commit message template
-S, --gpg-sign[=<key-id>]
GPG sign commit
Commit contents options
-a, --all commit all changed files
-i, --include add specified files to index for commit
--interactive interactively add files
-p, --patch interactively add changes
-o, --only commit only specified files
-n, --no-verify bypass pre-commit and commit-msg hooks
--dry-run show what would be committed
--short show status concisely
--branch show branch information
--porcelain machine-readable output
--long show status in long format (default)
-z, --null terminate entries with NUL
--amend amend previous commit
--no-post-rewrite bypass post-rewrite hook
-u, --untracked-files[=<mode>]
show untracked files, optional modes: all, normal, no. (Default: all)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (feature1)
$ git commit -m "AND simple"
[feature1 55c473d] AND simple
1 file changed, 1 insertion(+)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (feature1)
$ git status
On branch feature1
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (feature1)
$ git push origin feature1
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 348 bytes | 0 bytes/s, done.
Total 3 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1), completed with 1 local objects.
To github.com:sky2046/learngit.git
107c544..55c473d feature1 -> feature1
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (feature1)
$ git checkout master
Switched to branch 'master'
Your branch is up-to-date with 'origin/master'.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git commit -m "& simple"
[master f55615a] & simple
1 file changed, 1 insertion(+)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
Creating a new branch is quick.
Creating a new branch is quick & simple.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git merge feature1
Auto-merging readme.txt
CONFLICT (content): Merge conflict in readme.txt
Automatic merge failed; fix conflicts and then commit the result.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master|MERGING)
$ git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master|MERGING)
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
Creating a new branch is quick.
<<<<<<< HEAD
Creating a new branch is quick & simple.
=======
Creating a new branch is quick AND simple.
>>>>>>> feature1
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master|MERGING)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master|MERGING)
$ git commit -m "conflict fixed"
[master d164f39] conflict fixed
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git log --graph --pretty=oneline --abbrev-commit
* d164f39 conflict fixed
|\
| * 55c473d AND simple
* | f55615a & simple
|/
* 107c544 branch test
* 81fa19a add test.txt
* 0bb9eb8 git tracks changes
* dbdd52c git tracks changes
* b4a2026 understand how stage works
* 2b69123 append GPL
* 0ccfa0c add distributed
* 5b807d1 wrote a readme file
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git branch
feature1
* master
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git push origin master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 520 bytes | 0 bytes/s, done.
Total 4 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1), completed with 1 local objects.
To github.com:sky2046/learngit.git
107c544..d164f39 master -> master
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git branch -d feature1
Deleted branch feature1 (was 55c473d).
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git push origin master
Everything up-to-date
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git granch
git: 'granch' is not a git command. See 'git --help'.
Did you mean this?
branch
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git branch feature2
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ ls
learn-note.txt LICENSE readme.txt test.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git branch -d feature2
Deleted branch feature2 (was d164f39).
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git checkout -b dev
Switched to a new branch 'dev'
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git add readme.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git commit -m "add merge"
[dev 8b4d7c3] add merge
1 file changed, 1 insertion(+)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git checkout master
Switched to branch 'master'
Your branch is up-to-date with 'origin/master'.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git merge --no--ff -m "merge with no-ff" dev
error: unknown option `no--ff'
usage: git merge [<options>] [<commit>...]
or: git merge [<options>] <msg> HEAD <commit>
or: git merge --abort
-n do not show a diffstat at the end of the merge
--stat show a diffstat at the end of the merge
--summary (synonym to --stat)
--log[=<n>] add (at most <n>) entries from shortlog to merge commit message
--squash create a single commit instead of doing a merge
--commit perform a commit if the merge succeeds (default)
-e, --edit edit message before committing
--ff allow fast-forward (default)
--ff-only abort if fast-forward is not possible
--rerere-autoupdate update the index with reused conflict resolution if possible
--verify-signatures verify that the named commit has a valid GPG signature
-s, --strategy <strategy>
merge strategy to use
-X, --strategy-option <option=value>
option for selected merge strategy
-m, --message <message>
merge commit message (for a non-fast-forward merge)
-v, --verbose be more verbose
-q, --quiet be more quiet
--abort abort the current in-progress merge
--allow-unrelated-histories
allow merging unrelated histories
--progress force progress reporting
-S, --gpg-sign[=<key-id>]
GPG sign commit
--overwrite-ignore update ignored files (default)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git merge --no--ff -m "merge with no-ff" dev
error: unknown option `no--ff'
usage: git merge [<options>] [<commit>...]
or: git merge [<options>] <msg> HEAD <commit>
or: git merge --abort
-n do not show a diffstat at the end of the merge
--stat show a diffstat at the end of the merge
--summary (synonym to --stat)
--log[=<n>] add (at most <n>) entries from shortlog to merge commit message
--squash create a single commit instead of doing a merge
--commit perform a commit if the merge succeeds (default)
-e, --edit edit message before committing
--ff allow fast-forward (default)
--ff-only abort if fast-forward is not possible
--rerere-autoupdate update the index with reused conflict resolution if possible
--verify-signatures verify that the named commit has a valid GPG signature
-s, --strategy <strategy>
merge strategy to use
-X, --strategy-option <option=value>
option for selected merge strategy
-m, --message <message>
merge commit message (for a non-fast-forward merge)
-v, --verbose be more verbose
-q, --quiet be more quiet
--abort abort the current in-progress merge
--allow-unrelated-histories
allow merging unrelated histories
--progress force progress reporting
-S, --gpg-sign[=<key-id>]
GPG sign commit
--overwrite-ignore update ignored files (default)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git merge --no-ff -m "merge with no-ff" dev
Merge made by the 'recursive' strategy.
readme.txt | 1 +
1 file changed, 1 insertion(+)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git log --graph --pretty=oneline --abbrev-commit
* 2d56a15 merge with no-ff
|\
| * 8b4d7c3 add merge
|/
* d164f39 conflict fixed
|\
| * 55c473d AND simple
* | f55615a & simple
|/
* 107c544 branch test
* 81fa19a add test.txt
* 0bb9eb8 git tracks changes
* dbdd52c git tracks changes
* b4a2026 understand how stage works
* 2b69123 append GPL
* 0ccfa0c add distributed
* 5b807d1 wrote a readme file
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git push origin master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 423 bytes | 0 bytes/s, done.
Total 4 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), completed with 1 local objects.
To github.com:sky2046/learngit.git
d164f39..2d56a15 master -> master
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git checkout dev
Switched to branch 'dev'
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git status
On branch dev
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ ls
learn-note.txt LICENSE readme.txt test.txt
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git stash list
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git stash
No local changes to save
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git status
On branch dev
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git branch master
fatal: A branch named 'master' already exists.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (dev)
$ git checkout master
Switched to branch 'master'
Your branch is up-to-date with 'origin/master'.
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
nothing added to commit but untracked files present (use "git add" to track)
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: readme.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
learn-note.txt
no changes added to commit (use "git add" and/or "git commit -a")
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git stash
Saved working directory and index state WIP on master: 2d56a15 merge with no-ff
HEAD is now at 2d56a15 merge with no-ff
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git stash list
stash@{0}: WIP on master: 2d56a15 merge with no-ff
Administrator@XIAONA-PC MINGW64 /d/myBooks/Git/learngit (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files: