Tag Archives: GitHub
How to Remove A Single Commit From 3 Commits Ago
Run the following: You will see your commits as seen below. Replace the word pick with drop for the commit you want to remove. Then, force push to remote: That’s all!
How to Backdate Git Commits
Changing Dates for the Most Recent Commit You can backdate the author date and commit date of your last commit and then push it. To change the author date: To change the commit date: See both dates of the commits: Push If you have the commit pushed to remote, you will need to force push…

CI/CD – Continuous Integration, Continuous Delivery, and Continuous Deployment
Continuous Integration (CI) CI is the process of automatically building and testing your software on a regular basis. CI tools run builds and tests triggered by these commits. This improves consistency for testing, provides faster feedback, and reduces bugs in production. Any time a commit is added to a branch, CI tests can let you…

Markdown Basics
Markdown is a simple markup language for creating formatted text in a plain-text editor. Conventionally, readme files are written in markdown and saved with the .md extension. Github looks for a readme.md file and displays it under the bottom of the code tab of a repository.