Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
안지훈 authored Jun 7, 2023
1 parent 7766a53 commit b07f06a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,33 @@ let zsh = PLCommand.ZSH
zsh.run("{command}")
```

## Frequently Used Commands
PLCommand supports frequently used features.

### Git
```swift
PLCommand.Git.`init`()
PLCommand.Git.add()
PLCommand.Git.clone(repositoryURL)
PLCommand.Git.commit("comment")
PLCommand.Git.push()
PLCommand.Git.pull(remote: "origin")
PLCommand.Git.checkout(branch: "gh-page")
```

### Swift Package Manager
```swift
PLCommand.SwiftPackage.create()
PLCommand.SwiftPackage.create(type: .executable)
PLCommand.SwiftPackage.update()
PLCommand.SwiftPackage.generateXcodeproj()
PLCommand.SwiftPackage.build()
PLCommand.SwiftPackage.test()
```

> PLCommand will provide more functionality in the future.

### Extension
PLCommand is easier to scale.

Expand Down

0 comments on commit b07f06a

Please sign in to comment.