Common git commands
Hello. This page’s intention is to help me keep some git commands handy, since some times I forget how to do some tasks in the github workflow.
Our first step is to clone a repository using the command git clone …
Hello. This page’s intention is to help me keep some git commands handy, since some times I forget how to do some tasks in the github workflow.
Our first step is to clone a repository using the command git clone …
Git is a popular version control system that allows developers to manage their code repositories efficiently. If you are a developer using FreeBSD, you will need to set up Git and an authentication method to start collaborating on projects with other …
A command so important, it deserves its own page:
1git reset --soft HEAD~1
The previous command undoes the last commit to git. I think this is one of those commands that I have typed many times during the last year. It’s very important to know …