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…
Tag: git
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…
Getting going with Heroku and PHP (part 4)
Ok, so this trilogy wasn’t supposed to have a part 4. In Getting going with Heroku and PHP (part 1), part 2 and part 3, I detailed how I got my website successfully published using Git to push to my “master” branch, have Heroku set to automatically deploy from this branch, and have my Procfile set to point…
Getting going with Heroku and PHP (part 3)
In Getting going with Heroku and PHP (part 1) and part 2 I detailed how I made Heroku happy to build and deploy my website, but was now getting Server 5o3 errors when trying to view it in the browser. Not a good place to be! I then (slowly, too slowly) figured out it was because of the…
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…
Getting going with Heroku and PHP (part 2)
In Getting going with Heroku and PHP (part 1) I detailed how I start using “git subtree” to push my “build” folder into a separate repo, which Heroku would then automatically deploy. However, Heroku wasn’t happy that it was having to make so many assumptions, so my next step was to try and be more explicit. My…