Skip to content

Commit 93c7b0a

Browse files
committed
GIT-SSH to GitSSH rename
1 parent a3dab24 commit 93c7b0a

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

modules/gitssh-commands.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#================================================================#
4-
# GIT-SSH ENHANCED COMMANDS MODULE
4+
# GitSSH ENHANCED COMMANDS MODULE
55
# Enhanced versions of common Git commands with user verification
66
#================================================================#
77

modules/gitssh-init.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/sh
22

33
#================================================================#
4-
# GIT-SSH INITIALIZATION MODULE
5-
# Functions for setting up and validating the Git-SSH system
4+
# GitSSH INITIALIZATION MODULE
5+
# Functions for setting up and validating the GitSSH system
66
#================================================================#
77

88
#================================================================#
@@ -228,7 +228,7 @@ _validate_config() {
228228

229229
# Validate and repair configuration
230230
git_ssh_validate() {
231-
printf "Validating Git-SSH Configuration\n"
231+
printf "Validating GitSSH Configuration\n"
232232
printf "================================\n"
233233

234234
issues_found=0
@@ -327,7 +327,7 @@ git_ssh_validate() {
327327

328328
# Initialize configuration files with default structure
329329
git_ssh_init() {
330-
printf "Initializing Git-SSH User Session Manager...\n"
330+
printf "Initializing GitSSH User Session Manager...\n"
331331
printf "=============================================\n"
332332

333333
# Check and setup dependencies
@@ -392,7 +392,7 @@ git_ssh_migrate() {
392392
migration_needed=false
393393

394394
# Check for old format files (example)
395-
old_config_file="$HOME/.git-ssh-config"
395+
old_config_file="$HOME/.GitSSH-config"
396396
if [ -f "$old_config_file" ]; then
397397
printf "Found old configuration file: %s\n" "$old_config_file"
398398
migration_needed=true
@@ -424,7 +424,7 @@ git_ssh_migrate() {
424424

425425
# Reset configuration to defaults
426426
git_ssh_reset() {
427-
printf "Reset Git-SSH Configuration\n"
427+
printf "Reset GitSSH Configuration\n"
428428
printf "===========================\n"
429429
printf "This will remove all configuration and start fresh\n"
430430
printf "Are you sure? (y/N): "
@@ -463,9 +463,9 @@ git_ssh_reset() {
463463
# SYSTEM INFORMATION
464464
#================================================================#
465465

466-
# Show system information relevant to Git-SSH
466+
# Show system information relevant to GitSSH
467467
git_ssh_system_info() {
468-
printf "Git-SSH System Information\n"
468+
printf "GitSSH System Information\n"
469469
printf "==========================\n"
470470

471471
# Operating System

modules/gitssh-remotes.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#================================================================#
4-
# GIT-SSH REMOTE MANAGEMENT MODULE
4+
# GitSSH REMOTE MANAGEMENT MODULE
55
# Functions for managing Git remotes and SSH conversion
66
#================================================================#
77

modules/gitssh-sessions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#================================================================#
4-
# GIT-SSH SESSION MANAGEMENT MODULE
4+
# GitSSH SESSION MANAGEMENT MODULE
55
# Functions for managing user sessions and persistent storage
66
#================================================================#
77

modules/gitssh-users.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#================================================================#
4-
# GIT-SSH USER MANAGEMENT MODULE
4+
# GitSSH USER MANAGEMENT MODULE
55
# Functions for managing user configurations
66
#================================================================#
77

modules/gitssh-utils.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/sh
22

33
#================================================================#
4-
# GIT-SSH UTILITIES MODULE
5-
# Core utility functions for Git-SSH User Session Manager
4+
# GitSSH UTILITIES MODULE
5+
# Core utility functions for GitSSH User Session Manager
66
#================================================================#
77

88
#================================================================#

0 commit comments

Comments
 (0)