PLCommand v1.1.1
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")