Search This Blog

Showing posts with label git. Show all posts
Showing posts with label git. Show all posts

Friday, October 3, 2025

git push hangs after Total line (Total 7 (delta 3), reused 0 (delta 0), pack-reused 0 after no response)

 After git Commit -a -m "message"

    git config --global http.postBuffer 157286400

    git push   or  git push -u origin main



Friday, June 12, 2020

Tortoize Replacement for Linux Ubuntu - RabbitVCS for SVN and GIT Alternate

sudo apt-get purge rabbitvcs*

sudo add-apt-repository ppa:rabbitvcs/ppa
 
sudo apt-get update
 
sudo apt-get install rabbitvcs-nautilus
 
nautilus -q
 
 
-After restart you can see ->right click on your svn or git.
 
 

Friday, August 26, 2016

GIT Switch branch or SVN Relocate Changing a remote's URL

  1. 1. Open Git Bash.
  2. 2. Change the current working directory to your local project.
  3. 3. List your existing remotes in order to get the name of the remote you want to change.
    git remote -v
    origin  git@github.com:USERNAME/REPOSITORY.git (fetch)
    origin  git@github.com:USERNAME/REPOSITORY.git (push)
    
  4. 4. Change your remote's URL from SSH to HTTPS with the git remote set-url command.
    git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git
    
  5. 5. Verify that the remote URL has changed.
    git remote -v
    # Verify new remote URL
    origin  https://github.com/USERNAME/OTHERREPOSITORY.git (fetch)
    origin  https://github.com/USERNAME/OTHERREPOSITORY.git (push)
    

GIT Switch branch or SVN Relocate Changing a remote's URL

  1. 1. Open Git Bash.
  2. 2. Change the current working directory to your local project.
  3. 3. List your existing remotes in order to get the name of the remote you want to change.
    git remote -v
    origin  git@github.com:USERNAME/REPOSITORY.git (fetch)
    origin  git@github.com:USERNAME/REPOSITORY.git (push)
    
  4. 4. Change your remote's URL from SSH to HTTPS with the git remote set-url command.
    git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git
    
  5. 5. Verify that the remote URL has changed.
    git remote -v
    # Verify new remote URL
    origin  https://github.com/USERNAME/OTHERREPOSITORY.git (fetch)
    origin  https://github.com/USERNAME/OTHERREPOSITORY.git (push)
    

Wednesday, February 10, 2016

Git or bitbucket checkout public key - Self signed certificate issue

git-Checkout
************


1. generate your self signed private key from "putty-gen.exe" or "open ssl" etc..
    > generate new key
    > save private key ex: D:/drvijay/self-private.ppk


2. type  the below command in cmd 1. to ignore ssl verify, 2. add your self certificate , 


3. check out 

    > git config --global http.sslverify false
    > git config --system http.sslCAPath D:/drvijay/self-private.ppk

    > git clone https://@url/repo.git
    > pwd: test123


-- Enjoy

Wednesday, February 3, 2016

linux Ubuntu Git Setup Installation

Git
***
Type the below commands.

    sudo apt-get install git-core
    git clone https://github.com/ebhaiah/middleware-soa.git

Hit Counter


View My Stats