Skip to content

Commit

Permalink
Private access fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nanashili committed Sep 30, 2023
1 parent 2755951 commit 55647e8
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/Checkout.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import Foundation

public struct Checkout {

public init() {}

/// Checks out a Git branch in a specified directory.
///
/// - Parameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
import Foundation

public struct CherryPick {

public init() {}

/// The app-specific results from attempting to cherry pick commits
enum CherryPickResult: String {
/// Git completed the cherry pick without reporting any errors, and the caller can
Expand Down
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/Clone.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import Foundation

public struct Clone {

public init() {}

/// Clones a repository from a given url into to the specified path.
///
Expand Down
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/Commit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import Foundation

public struct Commit {

public init() {}

/// Creates a Git commit in a specified Git repository directory.
///
Expand Down
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/Config.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import Foundation

public struct Config {

public init() {}

/// Look up a Git configuration value by name within a specific repository context.
///
/// This function retrieves a Git configuration value within the context of a specific Git repository by reading the repository's path and then using the `getConfigValueInPath` function to perform the configuration value lookup.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import Foundation

public struct GitIgnore {

public init() {}

/// Read the contents of the repository's root `.gitignore` file.
///
Expand Down
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/LFS.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import Foundation

public struct LFS {

public init() {}

/// Install Git LFS (Large File Storage) global filters.
///
/// Git LFS is an extension for handling large files in a Git repository. This function installs Git LFS global filters, which apply to all Git repositories on the system and are configured globally.
Expand Down
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/Refs.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import Foundation

public struct Refs {

public init() {}

/// Format a local branch name as a Git ref syntax.
///
Expand Down
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/Reset.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ public enum GitResetMode: Int {
}

public struct Reset {

public init() {}

/// Convert a Git reset mode and a reference to an array of Git command arguments.
///
Expand Down
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/Stash.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import Foundation

public struct Stash {

public init() {}

private let editorStashEntryMarker = "!!AuroraEditor"

Expand Down
2 changes: 2 additions & 0 deletions Sources/Version-Control/Services/Models/Client/Tag.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import Foundation

public struct Tag {

public init() {}

/// Create a Git tag in a repository.
///
/// This function creates a Git tag with the specified `name` in a Git repository located at the specified `directoryURL`. The tag is associated with a target commit identified by its SHA (`targetCommitSha`).
Expand Down

0 comments on commit 55647e8

Please sign in to comment.