GitHub CLI is in beta

You know when you’re working away on your development, perhaps a website or a WordPress plugin, and you check in to Git using the command line, but then you have to switch over to the browser in order to create the pull request in GitHub?  Well not anymore! GitHub has now released GitHub CLI in beta, version 0.5.5 at…

Github Arctic Code Vault

Github are going to take all of the code in the public repositories and store it in a decommissioned coal mine.  They’re doing this in one week’s time, on 2nd February 2020 (02/02/2020) – so if you want your code immortalised (for a thousand years or more) then make sure you get it pushed up…

Git aliases

Taking a slight sidebar from my current blog series entitled Getting going with Heroku and PHP (part 1) (and part 2), I’ve discussed that the commands that I am now using to push updates are as follows… gulp git add . git commit -m “A useful commit message” git push git subtree push –prefix build heroku master This…