Tuesday, July 11, 2017

Clone existing Git repo to TFS git

Clone existing git repo ( Visual Studio 2015/2017 or github)
Copy remote URL and edit the remote origin to the cloned url
Using command prompt(Browse to the actual directory in Git Bash)
  • git remote rm origin
  • git push -u origin --all

In case we get "SL certificate problem: Unable to get local issuer certificate" error, execute below statement:
https://confluence.atlassian.com/bitbucketserverkb/ssl-certificate-problem-unable-to-get-local-issuer-certificate-816521128.html

git config --global http.sslVerify false

Friday, July 7, 2017

All you wanted to know about TFS integration tools/platform

This link pulls together all the blog posts that relate to the TFS Integration Tools / Platform.


Thursday, April 13, 2017

GitHub - failed to connect to github 443 windows/ Failed to connect to gitHub - No Error

Problem is with proxy that mostly organizations use

Solution:

Open chrome, go to below URL to see the proxy details:

chrome://net-internals/#proxy


Check Proxy tab on left. Run the PAC script in browser URL

It should download one pac file . Open in notepad

Check for something like this:

if ( host == "abc.com" )
      { return "PROXY IP Address:Port"; }


Thats your proxy.


Open .gitconfig file and append as seen below

[http]
    proxy = http://Domain\\UserID:Password@ProxyIPAddress:ProxyPort

If your password has @ replace with %40, if # then %23

It should work now

Tuesday, February 7, 2017