Set Username Password For Git

Set Username Password For Git

    • Related Articles

    • Disallow Access to .git in on the webserver

      To Disallow Access to .git Place this configuration: For apache in /etc/apache2/apache.conf <DirectoryMatch "^/.*/\.git/">   Deny from all </Directorymatch> For Nginx in /etc/nginx/nginx.conf location ~ /\.git {   return 404; }
    • Server Setup Ticket Format

      Hello @all   [ ALL TL / PM ]   I'm giving a template for server setup. I'd like to propose that all team-leaders and project-managers create all set-up tickets themselves.  NOTE - Please double-check all project-related details in the README.md file ...
    • Git clone into specific folder

      git init git remote add origin PATH/TO/REPO git fetch git checkout -t origin/master
    • What & How: Add Sudo User in any Ubuntu System.

      1. Create a new user adduser username 2. Add it to Sudoers Group so it can have the privilege of sudo access. usermod -aG sudo username 3. Now If you want to enable password-based login for this user and you are getting an error like "Permission ...
    • CHANGE GITLAB RUNNER

      Required Details : - server architectures type [ x86, AMD64, ARM64, ARM, s390x, ppc64le ] - super user access [ sudo password ] SSH in server where you want to set git runner. Step 1) #download binary for your system Warning : Select binary as per ...