Ubuntu 24.04
Sponsored Link

Git : साझा रिपॉजिटरी बनाएं2024/07/24

 

साझा रिपॉजिटरी बनाएं जिसका कुछ उपयोगकर्ता उपयोग कर सकें।

[1] साझा करने के लिए एक समूह बनाएं और समूह में उपयोगकर्ताओं को सेट करें।
# एक समूह बनाएं

root@dlp:~#
groupadd project01
# उपयोगकर्ताओं को समूह में जोड़ें

root@dlp:~#
usermod -aG project01 ubuntu

root@dlp:~#
usermod -aG project01 noble
[2] किसी उपयोगकर्ता के साथ साझा भंडार बनाएं।
# रिपॉजिटरी और परिवर्तन समूह के लिए एक निर्देशिका बनाएं

ubuntu@dlp:~$
mkdir project01.git

ubuntu@dlp:~$
chgrp project01 project01.git

ubuntu@dlp:~$
cd project01.git
ubuntu@dlp:~/project01.git$
chmod 755 /home/ubuntu

# खाली शेयर भंडार सेट करें

ubuntu@dlp:~/project01.git$
git init --bare --shared

hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint:   git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint:   git branch -m <name>
Initialized empty shared Git repository in /home/ubuntu/project01.git/

# [--shared] विकल्प के साथ, SGID निम्नानुसार सेट किया गया है

ubuntu@dlp:~/project01.git$
ll -d /home/ubuntu/project01.git

drwxrwsr-x 7 ubuntu project01 4096 Jul 24 01:01 /home/ubuntu/project01.git/
[3] [1] में जोड़े गए शेयर के लिए समूह में मौजूद उपयोगकर्ताओं के साथ रिपॉजिटरी का उपयोग करने के लिए सत्यापित करें।
noble@dlp:~$
mkdir work

noble@dlp:~$
cd work
noble@dlp:~/work$
git init

hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint:   git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint:   git branch -m <name>
Initialized empty Git repository in /home/noble/work/.git/

noble@dlp:~/work$
git config --global user.name "Server World"

noble@dlp:~/work$
git config --global user.email "noble@dlp.srv.world"
# एक परीक्षण फ़ाइल बनाएं और उसे रिपॉजिटरी में धकेलें

noble@dlp:~/work$
echo testfile > testfile1.txt

noble@dlp:~/work$
git add testfile1.txt

noble@dlp:~/work$
git commit testfile1.txt -m "Initial Commit"

[master (root-commit) 1547e4e] Initial Commit
 1 file changed, 1 insertion(+)
 create mode 100644 testfile1.txt

noble@dlp:~/work$
git remote add origin /home/ubuntu/project01.git

noble@dlp:~/work$
git push origin master

Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 232 bytes | 232.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
To /home/ubuntu/project01.git
 * [new branch]      master -> master
मिलान सामग्री