কীভাবে কোনও স্থানীয় রেপো যুক্ত করবেন এবং এটিকে দূরবর্তী রেপো হিসাবে বিবেচনা করবেন


234

আমি bakনিম্নলিখিতটি ব্যবহার করে আমার পিসিতে অন্য স্থানীয় রেপোটির নাম সহ স্থানীয় একটি রেপোকে রিমোট হিসাবে তৈরি করার চেষ্টা করছি :

git remote add /home/sas/dev/apps/smx/repo/bak/ontologybackend/.git bak

যা এই ত্রুটি দেয়:

fatal: '/home/sas/dev/apps/smx/repo/bak/ontologybackend/.git' is not a valid remote name

আমি দুটি স্থানীয় রেপ সিঙ্ক করার চেষ্টা করছি, যার মধ্যে একটির bakজন্য অন্যের নামক একটি রিমোট হিসাবে কনফিগার করা আছে এবং জারি করা হচ্ছে git pull bak

এটা করার সবচেয়ে ভালো উপায় কি?


সম্পাদনা:

দুঃখিত, আমাকে নির্বোধ, আমি বুঝতে পেরেছি দূরবর্তী অ্যাডটি হওয়া উচিত:

git remote add bak /home/sas/dev/apps/smx/repo/bak/ontologybackend/.git

রিমোটের নাম ঠিকানার আগে চলে যায় ।

উত্তর:


273

remote addকমান্ডটি সম্পর্কে আপনার যুক্তিগুলি বিপরীত হয়েছে:

git remote add <NAME> <PATH>

তাই:

git remote add bak /home/sas/dev/apps/smx/repo/bak/ontologybackend/.git

দেখুন git remote --helpআরও তথ্যের জন্য।


6
হয় .gitশেষে বিশেষভাবে যদিও প্রয়োজনীয়?
এরিক অ্যাগনার

5
এটি কেবল একটি পথ ... গিট এর নাম কী তা বিবেচনা করে না।
59

2
@ এরিকআগেইনার traditionতিহ্যগতভাবে, বেয়ার রেপোস একটি ".git" প্রত্যয় দিয়ে শেষ হবে। যদিও এটি সাধারণত এটি নিজস্ব ডিরেক্টরি হিসাবে নয়, বরং এটিও হয়: "/path/to/projectname.git"। - এটি বাদে এটি কিছুটা পার্থক্য করে।
আটলি

7
এটি প্রদর্শিত হয় যে আপনার একটি নিখুঁত পাথ ব্যবহার করা দরকার, যা আমার কাছে স্পষ্ট ছিল না। আমি যখন কোনও আপেক্ষিক পথ দিয়ে চেষ্টা করেছি তখন পেয়েছি fatal: '../dir' does not appear to be a git repository
কিথ লেইন

1
file://পথের সামনের অংশটি রাখা এবং স্থানীয় সংগ্রহস্থলের পুরো পথটি ব্যবহার করা গুরুত্বপূর্ণ যাতে ক্লায়েন্ট সফ্টওয়্যারটি প্রত্যাশিত প্রোটোকলের মাধ্যমে এটি অ্যাক্সেস করতে পারে। এবং উপরের এরিকের প্রশ্নের উত্তরে, .gitপথের শেষটি আপাতভাবে প্রয়োজন।
স্কট লাহেটাইন

158

যদি আপনার লক্ষ্যটি সহজেই ব্যাকআপের জন্য বা কোনও বাহ্যিক ড্রাইভের উপর চড়তে বা ক্লাউড স্টোরেজ (ড্রপবক্স, ইত্যাদি) এর মাধ্যমে ভাগ করে নেওয়ার জন্য সংগ্রহস্থলের স্থানীয় কপি রাখা থাকে তবে আপনি খালি স্টোর ব্যবহার করতে চাইতে পারেন । এটি আপনাকে ভাগ করে নেওয়ার জন্য অনুকূলিত করে একটি ওয়ার্কিং ডিরেক্টরি ছাড়াই সংগ্রহস্থলের অনুলিপি তৈরি করতে দেয়।

উদাহরণ স্বরূপ:

$ git init --bare ~/repos/myproject.git
$ cd /path/to/existing/repo
$ git remote add origin ~/repos/myproject.git
$ git push origin master

একইভাবে আপনি ক্লোন করতে পারেন যেন এটি কোনও দূরবর্তী রেপো:

$ git clone ~/repos/myproject.git

9
এটি গ্রহণযোগ্য উত্তর হওয়া উচিত, কারণ "" এর সর্বোত্তম উপায় কী? "এই প্রশ্নের পুরোপুরি ফিট করে। "স্থানীয় রেপো যেমন রিমোট রেপো হিসাবে বিবেচিত হয়", যেমন @ ওপেনস একে বলে, এটি অবশ্যই একটি বেয়ার ডিরেক্টরি (ঠিক বাস্তব রিমোট রিপোজিটরি হিসাবে)
জ্যাক '

1
আমি একজন সম্পাদনার প্রস্তাব: কিনা আপনি ব্যবহার করা উচিত "Git remot অ্যাড ..," + "Git ধাক্কা" বা শুধু "Git ক্লোন" এখানে উল্লিখিত হয়: stackoverflow.com/a/31590993/5446285 (adelphus 'উত্তর)
জ্যাক'

1
@ জ্যাক - আপনি কী বিভ্রান্তিকর বলে মনে করেছেন তা বিশদভাবে বর্ণনা করতে পারেন? আমি সংশোধন করতে পেরে খুশি তবে উত্তর তুলনামূলকভাবে সংহত করতে চাই।
ম্যাট স্যান্ডার্স

6

এটি প্রদর্শিত হয় যে আপনার ফর্ম্যাটটি ভুল:

আপনি যদি স্থানীয়ভাবে নির্মিত একটি সংগ্রহস্থল ভাগ করতে চান বা আপনি এলিসের সংগ্রহস্থলের কারও কাছ থেকে অবদান নিতে চান - আপনি যদি কোনও নতুন সংগ্রহস্থলের সাথে কোনওভাবেই ইন্টারেক্ট করতে চান, তবে এটি রিমোট হিসাবে যুক্ত করা সাধারণত সহজ iest আপনি গিট রিমোট অ্যাড [ওরফে] [ইউআরএল] চালিয়ে তা করেন। এটি [url] নামে একটি স্থানীয় দূরবর্তী নামে [url] যুক্ত করে।

#example
$ git remote
$ git remote add github git@github.com:schacon/hw.git
$ git remote -v

http://gitref.org/remotes/#remote


0

আমি স্থানীয় একটি রিমোটযুক্ত একটি স্থানীয় রেপো তৈরির তিনটি পৃথক পরিস্থিতিতে জুড়ে এমন ব্যাখ্যা সহ একটি স্ক্রিপ্ট সরবরাহ করতে এই উত্তরটি পোস্ট করছি। আপনি পুরো স্ক্রিপ্টটি চালাতে পারেন এবং এটি আপনার হোম ফোল্ডারে টেস্ট রেপো তৈরি করবে (উইন্ডোজ গিট ব্যাশে পরীক্ষিত)। আপনার ব্যক্তিগত নোটগুলিতে সহজে সাশ্রয়ের জন্য স্ক্রিপ্টের ভিতরে ব্যাখ্যা রয়েছে, এটির থেকে খুব পঠনযোগ্য, যেমন ভিজ্যুয়াল স্টুডিও কোড।

আমি জ্যাককে এই উত্তরটির সাথে সংযোগ দেওয়ার জন্য ধন্যবাদ জানাতে চাই যেখানে অ্যাডেলফাসের বিষয়ে ভাল, বিশদ, বিষয়টির ব্যাখ্যা রয়েছে।

এটি এখানে আমার প্রথম পোস্ট তাই দয়া করে কীসের উন্নতি করা উচিত সে বিষয়ে পরামর্শ দিন।

## SETUP LOCAL GIT REPO WITH A LOCAL REMOTE
# the main elements:
# - remote repo must be initialized with --bare parameter
# - local repo must be initialized
# - local repo must have at least one commit that properly initializes a branch(root of the commit tree)
# - local repo needs to have a remote
# - local repo branch must have an upstream branch on the remote

{ # the brackets are optional, they allow to copy paste into terminal and run entire thing without interruptions, run without them to see which cmd outputs what

cd ~
rm -rf ~/test_git_local_repo/

## Option A - clean slate - you have nothing yet

mkdir -p ~/test_git_local_repo/option_a ; cd ~/test_git_local_repo/option_a
git init --bare local_remote.git # first setup the local remote
git clone local_remote.git local_repo # creates a local repo in dir local_repo
cd ~/test_git_local_repo/option_a/local_repo
git remote -v show origin # see that git clone has configured the tracking
touch README.md ; git add . ; git commit -m "initial commit on master" # properly init master
git push origin master # now have a fully functional setup, -u not needed, git clone does this for you

# check all is set-up correctly
git pull # check you can pull
git branch -avv # see local branches and their respective remote upstream branches with the initial commit
git remote -v show origin # see all branches are set to pull and push to remote
git log --oneline --graph --decorate --all # see all commits and branches tips point to the same commits for both local and remote

## Option B - you already have a local git repo and you want to connect it to a local remote

mkdir -p ~/test_git_local_repo/option_b ; cd ~/test_git_local_repo/option_b
git init --bare local_remote.git # first setup the local remote

# simulate a pre-existing git local repo you want to connect with the local remote
mkdir local_repo ; cd local_repo
git init # if not yet a git repo
touch README.md ; git add . ; git commit -m "initial commit on master" # properly init master
git checkout -b develop ; touch fileB ; git add . ; git commit -m "add fileB on develop" # create develop and fake change

# connect with local remote
cd ~/test_git_local_repo/option_b/local_repo
git remote add origin ~/test_git_local_repo/option_b/local_remote.git
git remote -v show origin # at this point you can see that there is no the tracking configured (unlike with git clone), so you need to push with -u
git push -u origin master # -u to set upstream
git push -u origin develop # -u to set upstream; need to run this for every other branch you already have in the project

# check all is set-up correctly
git pull # check you can pull
git branch -avv # see local branch(es) and its remote upstream with the initial commit
git remote -v show origin # see all remote branches are set to pull and push to remote
git log --oneline --graph --decorate --all # see all commits and branches tips point to the same commits for both local and remote

## Option C - you already have a directory with some files and you want it to be a git repo with a local remote

mkdir -p ~/test_git_local_repo/option_c ; cd ~/test_git_local_repo/option_c
git init --bare local_remote.git # first setup the local remote

# simulate a pre-existing directory with some files
mkdir local_repo ; cd local_repo ; touch README.md fileB

# make a pre-existing directory a git repo and connect it with local remote
cd ~/test_git_local_repo/option_c/local_repo
git init
git add . ; git commit -m "inital commit on master" # properly init master
git remote add origin ~/test_git_local_repo/option_c/local_remote.git
git remote -v show origin # see there is no the tracking configured (unlike with git clone), so you need to push with -u
git push -u origin master # -u to set upstream

# check all is set-up correctly
git pull # check you can pull
git branch -avv # see local branch and its remote upstream with the initial commit
git remote -v show origin # see all remote branches are set to pull and push to remote
git log --oneline --graph --decorate --all # see all commits and branches tips point to the same commits for both local and remote
}

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.