Quick Note To Me

Read 2 posts from Quick Note To Me

Posts

  • Git clone repo with specific branch

    Git clone command clones the default or master repository from git remote source. If need to clone a specific branch, we need to specify the branch name in the git clone command. Here is the command to do so Or we can write the same command as follows Hope this helps. Happy Coding 🙂

  • Create git repo from existing project

    Often I forget the commands to create git repo from existing project in my local machine. First step is to init a git repo in your project. Use git bash Second step to add the project files into local git repo Use the .(dot) after the add, this is saying add all files. This command…