npm ERR! No git binary found in $PATH

I can’t seem to get zenbot to install I am new to node.js, so please be kind. I am getting all kinds of error I do have git installed. I followed the install instructions and I really don’t know where to start. I am a Java and C programming trying to cut my teeth on … Read more

Do I commit the package-lock.json file created by npm 5?

Yes, package-lock.json is intended to be checked into source control. If you’re using npm 5+, you may see this notice on the command line: created a lockfile as package-lock.json. You should commit this file. According to npm help package-lock.json: package-lock.json is automatically generated for any operations where npm modifies either the node_modules tree, or package.json. … Read more

“fatal: HttpRequestException encountered.” Error with GitHub/Bitbucket Repositories due to dropping TLS-1.0 support

Git hub has removed TLS-1.0 from it’s authentication services. https://githubengineering.com/crypto-removal-notice/ Solutions Windows Clients Use Version 2.14.3 (or newer) of Git for Windows and newer include an up-to-date Git Credential Manager for Windows: https://gitforwindows.org/ You can also explicitly update your Git Windows Credencial Manager to the latest version, 1.14.0, to get TLS-1.2 support: https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/tag/v1.14.0 Visual Studio … Read more

What does git push origin HEAD mean?

HEAD points to the top of the current branch. git can obtain the branch name from that. So it’s the same as: but you don’t have to remember/type the current branch name. Also it prevents you from pushing to the wrong remote branch by accident. If you want to push a different branch than the current one the … Read more

What does git push origin HEAD mean?

HEAD points to the top of the current branch. git can obtain the branch name from that. So it’s the same as: but you don’t have to remember/type the current branch name. Also it prevents you from pushing to the wrong remote branch by accident. If you want to push a different branch than the current one the … Read more