pulpcore_client 3.14.17 → 3.14.19

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2a53219d7a56cefb275636ae9106be9ffda601063ac33c5894a5dfa46274f8f
4
- data.tar.gz: 8309f899dbe1538375484f3f31c29b52dd646d9659448b4e036f91cc5136f2e6
3
+ metadata.gz: cf76081e1d9f0118318ae01ca91e9e10eed38b52748d208db62c784a4908ae10
4
+ data.tar.gz: bc3fba4e014c676b9c28386068bd743d8461d00ab6aec74e61bdd7e8ff820eca
5
5
  SHA512:
6
- metadata.gz: a23f187b891e3fb0d6ecd3a496fe01a1c4e6032ed359c539df9afcaa16c8004b3d259e05c1bfa4f4a09ff74d6103c927f5bbb9660db8cd7a3af6e70407da2e7d
7
- data.tar.gz: 92ff76d8a7c42bd14b6e896a895f24736c62a6eeb43b37c0a7c63c408991937bd5d0c904ee0b0869c532e50ed74fd85f988d0a63894e4d1d29d7048d558710b3
6
+ metadata.gz: 2cc9925d600fd911113cbc5e197802d900ab5c10aea2b5fafc2e8db2d79711cd052a271418f5f9f3dbaaa07b109bd13fcd745b2dc7649ba40e04a9a525406244
7
+ data.tar.gz: a6c1021eeeb59c1470ad966db1a6c7579db29b82be09111954749198ecee61d7447b4e942215b6510b3ad6462cb5dac2a8bdb13568f9d325627a5bfbceb33b8c
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 3.14.17
10
+ - Package version: 3.14.19
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulpcore_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulpcore_client-3.14.17.gem
27
+ gem install ./pulpcore_client-3.14.19.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulpcore_client-3.14.17.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulpcore_client-3.14.19.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulpcore_client', '~> 3.14.17'
36
+ gem 'pulpcore_client', '~> 3.14.19'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
8
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
9
  **name** | **String** | The name of the worker. | [optional] [readonly]
10
10
  **last_heartbeat** | **DateTime** | Timestamp of the last time the worker talked to the service. | [optional] [readonly]
11
11
 
@@ -14,8 +14,8 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpcoreClient'
16
16
 
17
- instance = PulpcoreClient::WorkerResponse.new(pulp_created: null,
18
- pulp_href: null,
17
+ instance = PulpcoreClient::WorkerResponse.new(pulp_href: null,
18
+ pulp_created: null,
19
19
  name: null,
20
20
  last_heartbeat: null)
21
21
  ```
@@ -154,7 +154,7 @@ module PulpcoreClient
154
154
  case value
155
155
  when ::File, ::Tempfile
156
156
  # TODO hardcode to application/octet-stream, need better way to detect content type
157
- data[key] = Faraday::UploadIO.new(value.path, 'application/octet-stream', value.path)
157
+ data[key] = Faraday::FilePart.new(value.path, 'application/octet-stream', value.path)
158
158
  when ::Array, nil
159
159
  # let Faraday handle Array and nil parameters
160
160
  data[key] = value
@@ -15,11 +15,11 @@ require 'date'
15
15
  module PulpcoreClient
16
16
  # Base serializer for use with :class:`pulpcore.app.models.Model` This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
17
17
  class WorkerResponse
18
+ attr_accessor :pulp_href
19
+
18
20
  # Timestamp of creation.
19
21
  attr_accessor :pulp_created
20
22
 
21
- attr_accessor :pulp_href
22
-
23
23
  # The name of the worker.
24
24
  attr_accessor :name
25
25
 
@@ -29,8 +29,8 @@ module PulpcoreClient
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
- :'pulp_created' => :'pulp_created',
33
32
  :'pulp_href' => :'pulp_href',
33
+ :'pulp_created' => :'pulp_created',
34
34
  :'name' => :'name',
35
35
  :'last_heartbeat' => :'last_heartbeat'
36
36
  }
@@ -39,8 +39,8 @@ module PulpcoreClient
39
39
  # Attribute type mapping.
40
40
  def self.openapi_types
41
41
  {
42
- :'pulp_created' => :'DateTime',
43
42
  :'pulp_href' => :'String',
43
+ :'pulp_created' => :'DateTime',
44
44
  :'name' => :'String',
45
45
  :'last_heartbeat' => :'DateTime'
46
46
  }
@@ -67,14 +67,14 @@ module PulpcoreClient
67
67
  h[k.to_sym] = v
68
68
  }
69
69
 
70
- if attributes.key?(:'pulp_created')
71
- self.pulp_created = attributes[:'pulp_created']
72
- end
73
-
74
70
  if attributes.key?(:'pulp_href')
75
71
  self.pulp_href = attributes[:'pulp_href']
76
72
  end
77
73
 
74
+ if attributes.key?(:'pulp_created')
75
+ self.pulp_created = attributes[:'pulp_created']
76
+ end
77
+
78
78
  if attributes.key?(:'name')
79
79
  self.name = attributes[:'name']
80
80
  end
@@ -102,8 +102,8 @@ module PulpcoreClient
102
102
  def ==(o)
103
103
  return true if self.equal?(o)
104
104
  self.class == o.class &&
105
- pulp_created == o.pulp_created &&
106
105
  pulp_href == o.pulp_href &&
106
+ pulp_created == o.pulp_created &&
107
107
  name == o.name &&
108
108
  last_heartbeat == o.last_heartbeat
109
109
  end
@@ -117,7 +117,7 @@ module PulpcoreClient
117
117
  # Calculates hash code according to all attributes.
118
118
  # @return [Integer] Hash code
119
119
  def hash
120
- [pulp_created, pulp_href, name, last_heartbeat].hash
120
+ [pulp_href, pulp_created, name, last_heartbeat].hash
121
121
  end
122
122
 
123
123
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.14.17'
14
+ VERSION = '3.14.19'
15
15
  end
@@ -21,13 +21,13 @@ Gem::Specification.new do |s|
21
21
  s.platform = Gem::Platform::RUBY
22
22
  s.authors = ["OpenAPI-Generator"]
23
23
  s.email = ["pulp-list@redhat.com"]
24
- s.homepage = "https://openapi-generator.tech"
24
+ s.homepage = "https://github.com/pulp/pulpcore"
25
25
  s.summary = "Pulp 3 API Ruby Gem"
26
26
  s.description = "Fetch, Upload, Organize, and Distribute Software Packages"
27
- s.license = 'GPL-2.0+'
27
+ s.license = 'GPLv2+'
28
28
  s.required_ruby_version = ">= 1.9"
29
29
 
30
- s.add_runtime_dependency 'faraday', '~> 0.17', '< 1.9.0'
30
+ s.add_runtime_dependency 'faraday', '>= 1.0.1', '< 2.0'
31
31
  s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
32
32
 
33
33
  s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
@@ -32,13 +32,13 @@ describe 'WorkerResponse' do
32
32
  expect(@instance).to be_instance_of(PulpcoreClient::WorkerResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_created"' do
35
+ describe 'test attribute "pulp_href"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_href"' do
41
+ describe 'test attribute "pulp_created"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
metadata CHANGED
@@ -1,35 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulpcore_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.14.17
4
+ version: 3.14.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-09 00:00:00.000000000 Z
11
+ date: 2023-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.17'
19
+ version: 1.0.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: 1.9.0
22
+ version: '2.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - "~>"
27
+ - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.17'
29
+ version: 1.0.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: 1.9.0
32
+ version: '2.0'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: json
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -181,7 +181,6 @@ files:
181
181
  - docs/VersionResponse.md
182
182
  - docs/WorkerResponse.md
183
183
  - docs/WorkersApi.md
184
- - git_push.sh
185
184
  - lib/pulpcore_client.rb
186
185
  - lib/pulpcore_client/api/access_policies_api.rb
187
186
  - lib/pulpcore_client/api/artifacts_api.rb
@@ -393,9 +392,9 @@ files:
393
392
  - spec/models/version_response_spec.rb
394
393
  - spec/models/worker_response_spec.rb
395
394
  - spec/spec_helper.rb
396
- homepage: https://openapi-generator.tech
395
+ homepage: https://github.com/pulp/pulpcore
397
396
  licenses:
398
- - GPL-2.0+
397
+ - GPLv2+
399
398
  metadata: {}
400
399
  post_install_message:
401
400
  rdoc_options: []
@@ -417,107 +416,107 @@ signing_key:
417
416
  specification_version: 4
418
417
  summary: Pulp 3 API Ruby Gem
419
418
  test_files:
420
- - spec/api/users_api_spec.rb
421
- - spec/api/access_policies_api_spec.rb
419
+ - spec/api/workers_api_spec.rb
420
+ - spec/api/groups_users_api_spec.rb
421
+ - spec/api/contentguards_api_spec.rb
422
+ - spec/api/exporters_pulp_api_spec.rb
423
+ - spec/api/importers_pulp_imports_api_spec.rb
422
424
  - spec/api/publications_api_spec.rb
423
- - spec/api/orphans_api_spec.rb
424
425
  - spec/api/signing_services_api_spec.rb
425
- - spec/api/repositories_api_spec.rb
426
- - spec/api/status_api_spec.rb
427
426
  - spec/api/uploads_api_spec.rb
428
- - spec/api/importers_pulp_imports_api_spec.rb
429
- - spec/api/groups_users_api_spec.rb
430
- - spec/api/groups_model_permissions_api_spec.rb
431
- - spec/api/task_groups_api_spec.rb
432
427
  - spec/api/tasks_api_spec.rb
433
- - spec/api/importers_pulp_import_check_api_spec.rb
434
- - spec/api/orphans_cleanup_api_spec.rb
435
- - spec/api/artifacts_api_spec.rb
436
- - spec/api/groups_object_permissions_api_spec.rb
437
- - spec/api/repair_api_spec.rb
438
- - spec/api/importers_pulp_api_spec.rb
439
428
  - spec/api/exporters_pulp_exports_api_spec.rb
440
- - spec/api/exporters_pulp_api_spec.rb
441
429
  - spec/api/content_api_spec.rb
430
+ - spec/api/repositories_api_spec.rb
431
+ - spec/api/orphans_cleanup_api_spec.rb
432
+ - spec/api/task_groups_api_spec.rb
442
433
  - spec/api/repository_versions_api_spec.rb
434
+ - spec/api/groups_object_permissions_api_spec.rb
435
+ - spec/api/artifacts_api_spec.rb
436
+ - spec/api/orphans_api_spec.rb
437
+ - spec/api/repair_api_spec.rb
443
438
  - spec/api/groups_api_spec.rb
444
- - spec/api/contentguards_api_spec.rb
445
- - spec/api/workers_api_spec.rb
439
+ - spec/api/users_api_spec.rb
440
+ - spec/api/groups_model_permissions_api_spec.rb
441
+ - spec/api/status_api_spec.rb
442
+ - spec/api/importers_pulp_api_spec.rb
443
+ - spec/api/access_policies_api_spec.rb
444
+ - spec/api/importers_pulp_import_check_api_spec.rb
446
445
  - spec/api_client_spec.rb
447
446
  - spec/configuration_spec.rb
448
- - spec/models/repository_version_response_spec.rb
449
- - spec/models/storage_response_spec.rb
450
- - spec/models/task_group_response_spec.rb
451
- - spec/models/paginated_user_response_list_spec.rb
452
- - spec/models/artifact_spec.rb
453
- - spec/models/paginated_pulp_importer_response_list_spec.rb
447
+ - spec/models/paginated_worker_response_list_spec.rb
448
+ - spec/models/repair_spec.rb
449
+ - spec/models/paginated_signing_service_response_list_spec.rb
450
+ - spec/models/pulp_importer_response_spec.rb
451
+ - spec/models/group_progress_report_response_spec.rb
452
+ - spec/models/upload_commit_spec.rb
453
+ - spec/models/content_app_status_response_spec.rb
454
+ - spec/models/group_response_spec.rb
455
+ - spec/models/paginated_publication_response_list_spec.rb
454
456
  - spec/models/multiple_artifact_content_response_spec.rb
455
- - spec/models/import_response_spec.rb
456
- - spec/models/paginated_import_response_list_spec.rb
457
- - spec/models/paginated_access_policy_response_list_spec.rb
458
- - spec/models/patched_pulp_exporter_spec.rb
459
- - spec/models/upload_chunk_spec.rb
460
- - spec/models/paginated_permission_response_list_spec.rb
457
+ - spec/models/paginated_multiple_artifact_content_response_list_spec.rb
458
+ - spec/models/storage_response_spec.rb
461
459
  - spec/models/pulp_export_spec.rb
462
- - spec/models/content_app_status_response_spec.rb
460
+ - spec/models/access_policy_spec.rb
461
+ - spec/models/upload_chunk_response_spec.rb
462
+ - spec/models/access_policy_response_spec.rb
463
463
  - spec/models/paginated_pulp_export_response_list_spec.rb
464
- - spec/models/redis_connection_response_spec.rb
465
464
  - spec/models/paginated_task_group_response_list_spec.rb
466
- - spec/models/paginated_worker_response_list_spec.rb
467
- - spec/models/user_group_response_spec.rb
468
- - spec/models/group_spec.rb
469
- - spec/models/pulp_importer_spec.rb
470
- - spec/models/paginated_group_user_response_list_spec.rb
471
- - spec/models/version_response_spec.rb
472
- - spec/models/permission_response_spec.rb
473
- - spec/models/repair_spec.rb
474
- - spec/models/paginated_signing_service_response_list_spec.rb
475
- - spec/models/async_operation_response_spec.rb
465
+ - spec/models/group_user_spec.rb
466
+ - spec/models/import_response_spec.rb
467
+ - spec/models/upload_response_spec.rb
468
+ - spec/models/paginated_access_policy_response_list_spec.rb
476
469
  - spec/models/paginated_task_response_list_spec.rb
477
- - spec/models/publication_response_spec.rb
478
- - spec/models/patched_pulp_importer_spec.rb
479
- - spec/models/pulp_export_response_spec.rb
480
- - spec/models/repository_response_spec.rb
470
+ - spec/models/task_group_response_spec.rb
471
+ - spec/models/async_operation_response_spec.rb
472
+ - spec/models/content_summary_response_spec.rb
473
+ - spec/models/paginated_repository_version_response_list_spec.rb
474
+ - spec/models/user_group_response_spec.rb
475
+ - spec/models/progress_report_response_spec.rb
481
476
  - spec/models/database_connection_response_spec.rb
482
477
  - spec/models/minimal_task_response_spec.rb
483
- - spec/models/user_response_spec.rb
484
- - spec/models/patched_group_spec.rb
485
478
  - spec/models/patched_task_cancel_spec.rb
486
- - spec/models/paginated_pulp_exporter_response_list_spec.rb
487
- - spec/models/task_response_spec.rb
488
- - spec/models/patched_access_policy_spec.rb
489
- - spec/models/group_user_spec.rb
490
- - spec/models/group_progress_report_response_spec.rb
491
- - spec/models/paginated_repository_response_list_spec.rb
492
- - spec/models/pulp_exporter_spec.rb
493
- - spec/models/artifact_response_spec.rb
494
- - spec/models/paginated_group_response_list_spec.rb
495
- - spec/models/progress_report_response_spec.rb
496
- - spec/models/upload_spec.rb
497
- - spec/models/status_response_spec.rb
498
- - spec/models/pulp_import_check_spec.rb
499
- - spec/models/pulp_exporter_response_spec.rb
500
- - spec/models/paginated_repository_version_response_list_spec.rb
501
479
  - spec/models/upload_detail_response_spec.rb
502
- - spec/models/paginated_upload_response_list_spec.rb
480
+ - spec/models/pulp_import_check_spec.rb
481
+ - spec/models/version_response_spec.rb
482
+ - spec/models/pulp_import_check_response_spec.rb
503
483
  - spec/models/evaluation_response_spec.rb
484
+ - spec/models/paginated_upload_response_list_spec.rb
485
+ - spec/models/permission_response_spec.rb
486
+ - spec/models/pulp_import_spec.rb
487
+ - spec/models/artifact_spec.rb
488
+ - spec/models/user_response_spec.rb
489
+ - spec/models/pulp_importer_spec.rb
490
+ - spec/models/paginated_repository_response_list_spec.rb
491
+ - spec/models/paginated_content_guard_response_list_spec.rb
492
+ - spec/models/upload_chunk_spec.rb
493
+ - spec/models/content_guard_response_spec.rb
504
494
  - spec/models/orphans_cleanup_spec.rb
505
- - spec/models/content_summary_response_spec.rb
506
- - spec/models/paginated_multiple_artifact_content_response_list_spec.rb
507
- - spec/models/access_policy_spec.rb
508
- - spec/models/upload_response_spec.rb
509
- - spec/models/upload_chunk_response_spec.rb
510
495
  - spec/models/worker_response_spec.rb
511
- - spec/models/paginated_content_guard_response_list_spec.rb
512
- - spec/models/group_response_spec.rb
513
- - spec/models/pulp_import_check_response_spec.rb
514
- - spec/models/pulp_import_spec.rb
515
- - spec/models/paginated_publication_response_list_spec.rb
516
- - spec/models/access_policy_response_spec.rb
517
- - spec/models/group_user_response_spec.rb
496
+ - spec/models/redis_connection_response_spec.rb
497
+ - spec/models/paginated_import_response_list_spec.rb
498
+ - spec/models/patched_pulp_exporter_spec.rb
499
+ - spec/models/publication_response_spec.rb
500
+ - spec/models/patched_pulp_importer_spec.rb
501
+ - spec/models/status_response_spec.rb
502
+ - spec/models/task_response_spec.rb
503
+ - spec/models/upload_spec.rb
504
+ - spec/models/paginated_group_user_response_list_spec.rb
505
+ - spec/models/patched_group_spec.rb
506
+ - spec/models/repository_response_spec.rb
507
+ - spec/models/group_spec.rb
508
+ - spec/models/paginated_group_response_list_spec.rb
509
+ - spec/models/artifact_response_spec.rb
510
+ - spec/models/pulp_export_response_spec.rb
518
511
  - spec/models/signing_service_response_spec.rb
519
- - spec/models/upload_commit_spec.rb
520
- - spec/models/content_guard_response_spec.rb
512
+ - spec/models/paginated_pulp_exporter_response_list_spec.rb
513
+ - spec/models/patched_access_policy_spec.rb
514
+ - spec/models/group_user_response_spec.rb
515
+ - spec/models/pulp_exporter_response_spec.rb
516
+ - spec/models/paginated_permission_response_list_spec.rb
521
517
  - spec/models/paginated_artifact_response_list_spec.rb
522
- - spec/models/pulp_importer_response_spec.rb
518
+ - spec/models/repository_version_response_spec.rb
519
+ - spec/models/pulp_exporter_spec.rb
520
+ - spec/models/paginated_pulp_importer_response_list_spec.rb
521
+ - spec/models/paginated_user_response_list_spec.rb
523
522
  - spec/spec_helper.rb
data/git_push.sh DELETED
@@ -1,58 +0,0 @@
1
- #!/bin/sh
2
- # ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
3
- #
4
- # Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
5
-
6
- git_user_id=$1
7
- git_repo_id=$2
8
- release_note=$3
9
- git_host=$4
10
-
11
- if [ "$git_host" = "" ]; then
12
- git_host="github.com"
13
- echo "[INFO] No command line input provided. Set \$git_host to $git_host"
14
- fi
15
-
16
- if [ "$git_user_id" = "" ]; then
17
- git_user_id="GIT_USER_ID"
18
- echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
19
- fi
20
-
21
- if [ "$git_repo_id" = "" ]; then
22
- git_repo_id="GIT_REPO_ID"
23
- echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
24
- fi
25
-
26
- if [ "$release_note" = "" ]; then
27
- release_note="Minor update"
28
- echo "[INFO] No command line input provided. Set \$release_note to $release_note"
29
- fi
30
-
31
- # Initialize the local directory as a Git repository
32
- git init
33
-
34
- # Adds the files in the local repository and stages them for commit.
35
- git add .
36
-
37
- # Commits the tracked changes and prepares them to be pushed to a remote repository.
38
- git commit -m "$release_note"
39
-
40
- # Sets the new remote
41
- git_remote=`git remote`
42
- if [ "$git_remote" = "" ]; then # git remote not defined
43
-
44
- if [ "$GIT_TOKEN" = "" ]; then
45
- echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
46
- git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
47
- else
48
- git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
49
- fi
50
-
51
- fi
52
-
53
- git pull origin master
54
-
55
- # Pushes (Forces) the changes in the local repository up to the remote repository
56
- echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
57
- git push origin master 2>&1 | grep -v 'To https'
58
-