Git Checkout Specific Branch From Remote Repository This article explained, checkout specific branch from git remote repository. In the real time environment, some times we want to checkout only specific branch instead master branch which by default downloaded. After checkout the specific branch, we can verify the branch downloaded or not. We can use the […]
Tag: Github
How to delete folder in GitHub repository and local git repository
Sometimes we want to delete folders from GitHub but there is no option in GitHub to delete folder directly. If you want to delete folder from GitHub then we need to open the folder and delete all files one by one and then the folder will be automatically disappeared / deleted. In git repository, the […]
Most Useful Git Commands
In this article I am sharing a list of most useful git commands which are used in day to day activity in every project. Getting & Creating Projects Command Description git init Initialize a local Git repository git clone ssh://[email protected]/[username]/[repository-name].git Create a local copy of a remote repository Basic Snapshotting Command Description git status […]