Skip to content

PLCommand v1.1.1

Compare
Choose a tag to compare
@jihoonahn jihoonahn released this 18 Aug 16:00
· 59 commits to main since this release
2466cd8

What's Changed

The previously provided command in PLCommand has been changed to make it easier to use.

Before

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")

After

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