resulgit 1.0.17 → 1.0.18

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/resulgit.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resulgit",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "A powerful CLI tool for version control system operations - clone, commit, push, pull, merge, branch management, and more",
5
5
  "main": "resulgit.js",
6
6
  "bin": {
package/resulgit.js CHANGED
@@ -68,7 +68,7 @@ function loadConfig() {
68
68
  const s = fs.readFileSync(file, 'utf8')
69
69
  return JSON.parse(s)
70
70
  } catch {
71
- return { server: 'http://10.205.11.8:7513', token: '', workspaceRoot: path.join(os.homedir(), 'resulgit-workspace') }
71
+ return { server: 'https://gitu.resulticks.com', token: '', workspaceRoot: path.join(os.homedir(), 'resulgit-workspace') }
72
72
  }
73
73
  }
74
74
 
@@ -82,7 +82,7 @@ function saveConfig(update) {
82
82
  }
83
83
 
84
84
  function getServer(opts, cfg) {
85
- return opts.server || cfg.server || 'http://10.205.11.8:7513'
85
+ return opts.server || cfg.server || 'https://gitu.resulticks.com'
86
86
  }
87
87
 
88
88
  function getToken(opts, cfg) {