Skip to content

Commit c2cd8f0

Browse files
committed
First commit
0 parents  commit c2cd8f0

File tree

6 files changed

+1206
-0
lines changed

6 files changed

+1206
-0
lines changed

CHANGELOG.md

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Changelog
2+
3+
All notable changes to LsiGitCheckout will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [2.1.2] - 2025-01-10
9+
10+
### Removed
11+
- Removed dead code: Get-SshKeyPassword function (not used with PuTTY/Pageant)
12+
13+
### Fixed
14+
- Script structure syntax errors
15+
16+
## [2.1.0] - 2025-01-10
17+
18+
### Changed
19+
- **BREAKING**: Removed OpenSSH support - now PuTTY/plink only
20+
- Simplified SSH key handling to only support PuTTY format (.ppk)
21+
- Removed -SshClient parameter
22+
23+
### Removed
24+
- All OpenSSH-related code branches
25+
- SSH client mode selection
26+
27+
## [2.0.0] - 2025-01-09
28+
29+
### Changed
30+
- **BREAKING**: Removed per-submodule Skip LFS configuration
31+
- Skip LFS now applies to the entire repository including all submodules
32+
- Significantly simplified code by removing complex LFS override logic
33+
34+
### Fixed
35+
- Submodule LFS inheritance issues
36+
- Debug message accuracy
37+
38+
## [1.5.0] - 2025-01-09
39+
40+
### Added
41+
- SSH key support for individual submodules during update
42+
- Submodules can now use different SSH keys as configured
43+
- Improved error handling for SSH submodule authentication
44+
45+
### Changed
46+
- Merged "Submodule SSH Keys" into "Submodule Config" for cleaner JSON format
47+
48+
## [1.4.0] - 2025-01-09
49+
50+
### Added
51+
- "Skip LFS" configuration option for repositories
52+
- "Submodule Config" section with per-submodule LFS control
53+
- LFS pulls can now be skipped on a per-repository or per-submodule basis
54+
55+
## [1.3.0] - 2025-01-08
56+
57+
### Added
58+
- Support for PuTTY/plink SSH client
59+
- -SshClient parameter to choose between OpenSSH and PuTTY
60+
- Automatic detection of key format (OpenSSH vs PuTTY)
61+
- Integration with Pageant for PuTTY keys
62+
63+
## [1.2.0] - 2025-01-08
64+
65+
### Added
66+
- Support for repository paths with spaces
67+
- Proper quoting for all path operations
68+
69+
### Fixed
70+
- Clone operations failing when repository path contains spaces
71+
- Git commands not properly handling quoted paths
72+
73+
## [1.1.0] - 2025-01-08
74+
75+
### Added
76+
- Git LFS support with automatic detection
77+
- Submodule SSH key configuration
78+
- Dry run mode (-DryRun parameter)
79+
- Debug logging (-EnableDebugLog parameter)
80+
81+
### Changed
82+
- Improved error handling and user feedback
83+
- Enhanced logging system with multiple levels
84+
85+
## [1.0.0] - 2025-01-07
86+
87+
### Added
88+
- Initial release
89+
- Multiple repository management from JSON configuration
90+
- Tag-based checkout
91+
- SSH key support for repositories
92+
- Automatic repository reset
93+
- Submodule initialization and update
94+
- Comprehensive error handling
95+
- Summary report generation

LICENSE

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2025, LS Instruments AG
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
3. Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)