Git server with username and password authentication

Giorgio

I would like to set a Git server and let my developers login using username and password in order to commit and make changes to the projects. I need also to manage developer access to projects (I think I should use gitolite for this).

How can I do that?

I am used to Subversion which is easy because you can set username and password for each developer, which can easily access the repository without having the generate an SSH key and put it on the server.

Paul

On Unix/Linux, just create a new directory on your server for your git project (naming convention is that folder names should end with .git). Then initialize the directory with:

git init --bare

Now you have an empty git main repo. Users can clone this repo from your server with:

git clone username@hostname:/path/to/git/folder

(password will be asked for)

Use Unix/Linux user administration tool to manage your developer access.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Client/server username/password authentication

From Dev

Git clone with username password authentication in one go

From Dev

Username and Password for LDAP Authentication

From Java

git remote: Invalid username or password. fatal: Authentication failed - ubuntu

From Dev

Chrome - Authentication Required. The server requires a username and password

From Dev

Chrome - Authentication Required. The server requires a username and password

From Dev

How to add authentication(Username/Password) in Twisted client server application in python?

From Dev

Storing username and password in Git

From Dev

Authentication via username and password in Cassandra

From Dev

Android How Get Responce from Web Server from the following URL With Authentication UserName and Password

From Dev

Windows authentication works by default with SQL Server, when empty username/password are passed

From Java

Username and password in command for git push

From Dev

How to save username and password in Git?

From Java

Git push requires username and password

From Dev

How to save username and password in Git?

From Dev

Authentication with username & password with node js, AngularJs and JWT

From Dev

Selfhosted WCF Service with SSL and Username and Password authentication

From Dev

remote: Invalid username or password, fatal: Authentication failed for

From Dev

Google Drive API username + password authentication

From Dev

How long can a basic authentication username/password be?

From Dev

Print username and password used in spring security authentication

From Dev

Chatting authentication of password and username to get IP and port

From Dev

Eclipse Luna Not Storing Proxy Authentication Username and Password

From Dev

Thrift sasl with username/password authentication for C++

From Dev

Using JDBC to implement username and password authentication

From Dev

authentication -- making username and password global in java

From Dev

Eclipse Luna Not Storing Proxy Authentication Username and Password

From Dev

get google authentication token using username and password

From Dev

Authentication failed. Please check your username/password. [Server response: DNS Error: Domain name not found code(0) ]

Related Related

  1. 1

    Client/server username/password authentication

  2. 2

    Git clone with username password authentication in one go

  3. 3

    Username and Password for LDAP Authentication

  4. 4

    git remote: Invalid username or password. fatal: Authentication failed - ubuntu

  5. 5

    Chrome - Authentication Required. The server requires a username and password

  6. 6

    Chrome - Authentication Required. The server requires a username and password

  7. 7

    How to add authentication(Username/Password) in Twisted client server application in python?

  8. 8

    Storing username and password in Git

  9. 9

    Authentication via username and password in Cassandra

  10. 10

    Android How Get Responce from Web Server from the following URL With Authentication UserName and Password

  11. 11

    Windows authentication works by default with SQL Server, when empty username/password are passed

  12. 12

    Username and password in command for git push

  13. 13

    How to save username and password in Git?

  14. 14

    Git push requires username and password

  15. 15

    How to save username and password in Git?

  16. 16

    Authentication with username & password with node js, AngularJs and JWT

  17. 17

    Selfhosted WCF Service with SSL and Username and Password authentication

  18. 18

    remote: Invalid username or password, fatal: Authentication failed for

  19. 19

    Google Drive API username + password authentication

  20. 20

    How long can a basic authentication username/password be?

  21. 21

    Print username and password used in spring security authentication

  22. 22

    Chatting authentication of password and username to get IP and port

  23. 23

    Eclipse Luna Not Storing Proxy Authentication Username and Password

  24. 24

    Thrift sasl with username/password authentication for C++

  25. 25

    Using JDBC to implement username and password authentication

  26. 26

    authentication -- making username and password global in java

  27. 27

    Eclipse Luna Not Storing Proxy Authentication Username and Password

  28. 28

    get google authentication token using username and password

  29. 29

    Authentication failed. Please check your username/password. [Server response: DNS Error: Domain name not found code(0) ]

HotTag

Archive