Git – remote: Repository not found

Please find below the working solution for Windows: Open Control Panel from the Start menu. Select User Accounts. Select the “Credential Manager”. Click on “Manage Windows Credentials”. Delete any credentials related to Git or GitHub. Once you deleted all then try to clone again. Reference: https://stackoverflow.com/questions/37813568/git-remote-repository-not-found

Categories Git

Quick set up for add git repository

Quick setup — if you’ve done this kind of thing before  Set up in DesktoporHTTPSSSH Get started by creating a new file or uploading an existing file. We recommend every repository include a README, LICENSE, and .gitignore. …or create a new repository on the command line echo “# api.carnama” >> README.md git init git add README.md git commit -m “first commit” git … Read more

Categories Git

How to Force HTTP to HTTPS using .htaccess

How to Force HTTPS using .htaccess

Redirect all URL HTTP traffic to HTTPS, i.e. permanently redirect old URL to new URL. Follow these steps: Open .htaccess file find RewriteEngine On and copy-paste these codes Note: Make sure the line RewriteEngine On is not repeated twice.