Reset a Git branch to a remote repository
Sometimes you may need to reset or discard all of your changes and reset your local branch to be just like the branch on the remote repository. So today we...
Sometimes you may need to reset or discard all of your changes and reset your local branch to be just like the branch on the remote repository. So today we...
If you have mistyped the name of the Git branch and added it in the remote repository then we can change it with the help of the bunch of the...
Today we’ll give you an understanding of the tags and show you a list of git commands to play with tags. Checkout more articles on Git Remove the last commit...
In this short article, show you how to remove the last commit from the git repository. Checkout more articles on Git Undo commit before push in Git Delete all commit...
In this short article, we will show you how to configure git to ignore some files locally. Sometimes, You may need to exclude files from Git only on your computer....
Today we’ll show you how to delete all commit history in GitHub. It’s a very small but useful article to delete all commit history of the branch and create a...
Today we will show you how to undo commit before push in Git remote repository. We’ll provide you the three different ways to undo commit which has not been pushed....
Today we’ll show you how to set up multiple SSH keys for different GitHub accounts. When you need to work with the two different GitHub accounts and those accounts need...
Today we’ll give you an understanding of the branches and show you a list of git commands to play with branches. Using branches in Git, git create branch from master,...
Today we’ll show you how to save changes temporarily using git stash. Sometimes you might need to save your work temporarily. So you can use the git stash command to...
Today we’ll show you how to change the commit message in git. This is a small article but very useful for those who work with git. change commit message after...
Today we will show you how to push code to GitHub. If you want to publish your work on github then you have to push your code on remote repository....
Today we will show you how to clone git repository with HTTPS. Here we will give you step by step instruction for it. Git clone remote repository, How do you...
Today we will show you how to configure username and email in Git at global level and local level. It will be used when you commit your code in repository....