File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -552,6 +552,34 @@ export extern "git branch" [
552
552
-- track(-t) # when creating a branch, set upstream
553
553
]
554
554
555
+ # List all variables set in config file, along with their values.
556
+ export extern "git config list" [
557
+ ]
558
+
559
+ # Emits the value of the specified key.
560
+ export extern "git config get" [
561
+ ]
562
+
563
+ # Set value for one or more config options.
564
+ export extern "git config set" [
565
+ ]
566
+
567
+ # Unset value for one or more config options.
568
+ export extern "git config unset" [
569
+ ]
570
+
571
+ # Rename the given section to a new name.
572
+ export extern "git config rename-section" [
573
+ ]
574
+
575
+ # Remove the given section from the configuration file.
576
+ export extern "git config remove-section" [
577
+ ]
578
+
579
+ # Opens an editor to modify the specified config file
580
+ export extern "git config edit" [
581
+ ]
582
+
555
583
# List or change tracked repositories
556
584
export extern "git remote" [
557
585
-- verbose(-v) # Show URL for remotes
You can’t perform that action at this time.
0 commit comments