@gkalpak/aliases 0.9.3 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/config/cfgbash.js +1 -1
- package/bin/config/cfgbash.wsl.js +1 -1
- package/bin/config/cfggit.js +2 -2
- package/bin/config/cfggit.wsl.js +2 -2
- package/bin/config/cfgvim.js +1 -1
- package/bin/misc/alv.js +1 -1
- package/lib/constants.js +2 -3
- package/package.json +1 -1
- package/bin/config/cfggit.win32.js +0 -21
package/bin/config/cfgbash.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const utils = require('../../lib/utils');
|
|
4
4
|
/* eslint-disable max-len */
|
|
5
5
|
console.log(utils.stripIndentation(`
|
|
6
|
-
### [Generated by: @gkalpak/aliases v0.9.
|
|
6
|
+
### [Generated by: @gkalpak/aliases v0.9.4]
|
|
7
7
|
### Copy the following into '~/.bashrc':
|
|
8
8
|
|
|
9
9
|
# Set up prompt.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const utils = require('../../lib/utils');
|
|
4
4
|
/* eslint-disable max-len */
|
|
5
5
|
console.log(utils.stripIndentation(`
|
|
6
|
-
### [Generated by: @gkalpak/aliases v0.9.
|
|
6
|
+
### [Generated by: @gkalpak/aliases v0.9.4]
|
|
7
7
|
### Copy the following into '~/.bashrc':
|
|
8
8
|
|
|
9
9
|
# Set up prompt.
|
package/bin/config/cfggit.js
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
const utils = require('../../lib/utils');
|
|
4
4
|
console.log(utils.stripIndentation(`
|
|
5
|
-
### [Generated by: @gkalpak/aliases v0.9.
|
|
5
|
+
### [Generated by: @gkalpak/aliases v0.9.4]
|
|
6
6
|
### Run the following commands:
|
|
7
7
|
|
|
8
8
|
git config --global commit.gpgSign true
|
|
9
9
|
git config --global core.editor "vim"
|
|
10
|
-
git config --global credential.helper "
|
|
10
|
+
git config --global credential.helper "manager"
|
|
11
11
|
git config --global merge.tool "kdiff3"
|
|
12
12
|
git config --global mergetool.kdiff3.path "/path/to/kdiff3"
|
|
13
13
|
git config --global mergetool.kdiff3.trustExitCode "false"
|
package/bin/config/cfggit.wsl.js
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
const utils = require('../../lib/utils');
|
|
4
4
|
console.log(utils.stripIndentation(`
|
|
5
|
-
### [Generated by: @gkalpak/aliases v0.9.
|
|
5
|
+
### [Generated by: @gkalpak/aliases v0.9.4]
|
|
6
6
|
### Run the following commands:
|
|
7
7
|
|
|
8
8
|
git config --global commit.gpgSign true
|
|
9
9
|
git config --global core.editor "vim"
|
|
10
|
-
git config --global credential.helper "/mnt/c/Program\\ Files/Git/mingw64/
|
|
10
|
+
git config --global credential.helper "/mnt/c/Program\\ Files/Git/mingw64/bin/git-credential-manager-core.exe"
|
|
11
11
|
git config --global merge.tool "kdiff3"
|
|
12
12
|
git config --global mergetool.kdiff3.path "/path/to/kdiff3"
|
|
13
13
|
git config --global mergetool.kdiff3.trustExitCode "false"
|
package/bin/config/cfgvim.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
|
-
console.log('""" [Generated by: @gkalpak/aliases v0.9.
|
|
3
|
+
console.log('""" [Generated by: @gkalpak/aliases v0.9.4]');
|
|
4
4
|
console.log('""" Copy the following into \'~/.vimrc\':\n');
|
|
5
5
|
console.log(require('fs').readFileSync(`${__dirname}/../../lib/assets/vimrc.txt`, 'utf8').trim() + '\n');
|
package/bin/misc/alv.js
CHANGED
package/lib/constants.js
CHANGED
|
@@ -469,10 +469,9 @@ const ALIASES = {
|
|
|
469
469
|
|
|
470
470
|
// GIT
|
|
471
471
|
cfggit: new Alias({
|
|
472
|
-
default: CFGGIT_SPEC_WITH_CRED_HELPER('
|
|
473
|
-
win32: CFGGIT_SPEC_WITH_CRED_HELPER('manager'),
|
|
472
|
+
default: CFGGIT_SPEC_WITH_CRED_HELPER('manager'),
|
|
474
473
|
wsl: CFGGIT_SPEC_WITH_CRED_HELPER(
|
|
475
|
-
'/mnt/c/Program\\\\ Files/Git/mingw64/
|
|
474
|
+
'/mnt/c/Program\\\\ Files/Git/mingw64/bin/git-credential-manager-core.exe'),
|
|
476
475
|
}),
|
|
477
476
|
|
|
478
477
|
|
package/package.json
CHANGED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
'use strict';
|
|
3
|
-
const utils = require('../../lib/utils');
|
|
4
|
-
console.log(utils.stripIndentation(`
|
|
5
|
-
### [Generated by: @gkalpak/aliases v0.9.3]
|
|
6
|
-
### Run the following commands:
|
|
7
|
-
|
|
8
|
-
git config --global commit.gpgSign true
|
|
9
|
-
git config --global core.editor "vim"
|
|
10
|
-
git config --global credential.helper "manager"
|
|
11
|
-
git config --global merge.tool "kdiff3"
|
|
12
|
-
git config --global mergetool.kdiff3.path "/path/to/kdiff3"
|
|
13
|
-
git config --global mergetool.kdiff3.trustExitCode "false"
|
|
14
|
-
git config --global push.default "upstream"
|
|
15
|
-
git config --global rebase.autosquash "true"
|
|
16
|
-
git config --global rebase.autostash "true"
|
|
17
|
-
git config --global tag.gpgSign true
|
|
18
|
-
git config --global user.email "kalpakas.g@gmail.com"
|
|
19
|
-
git config --global user.name "George Kalpakas"
|
|
20
|
-
git config --global user.signingKey "0FF21FC44ECE9F07"
|
|
21
|
-
`));
|