Git RSS

Follow The Programmer Blog RSS feed to stay up to date with the latest programming tutorials regarding anything Git. If you're looking to upgrade your software developer shirt collection we offer some pretty cool programmer shirts. For more of the latest developer news and programming tutorials visit The Programmer Blog. View all programming tutorials tagged with Git below:


Git

If you have accidentally committed changes that you don't want to include in your repository, you can undo those commits using the git reset command. Here are the steps: Identify the commit(s) to undo: Use git log or a similar command to find the SHA hash of the commit you want to undo. For example, if you want to undo...

Read more

Git

Delete a Git Branch To delete a branch locally without pushing it to the remote repository, use the following command: git branch -d <branch-name> Replace <branch-name> with the name of the branch you want to delete. If the branch has not been merged, you might need to use -D instead of -d to force the deletion. To delete a branch...

Read more

Git

Git - How to undo the last commit

Removing your latest commit from your local (or remote) Git repository is a common task when you've committed the wrong files and/or code. Here are a few short and sweet examples using Git that show how to undo a commit (without twelve paragraphs of theory explaining it).   Undo last commit from local Git repository Problem You just executed a git commit. You did not execute a git...

Read more