From 26a7f9de76ff114ceeacdce203427d149a995444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Fri, 16 Feb 2024 16:33:42 +0300 Subject: [PATCH] Typo fix for mutliple forge English markdown file and translated it to Turkish --- multiple-forge.md | 6 ++--- multiple-forge.tr.md | 59 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 3 deletions(-) create mode 100644 multiple-forge.tr.md diff --git a/multiple-forge.md b/multiple-forge.md index 8ad5210..8404fdf 100644 --- a/multiple-forge.md +++ b/multiple-forge.md @@ -2,7 +2,7 @@ First we create remote repositories on the related forge web user interfaces. -For this repository it is : +For this repository they are : * [GitHub](https://github.com/hwpplayer1/hacker-how-to) * [GitLab](https://gitlab.com/masscollabs/masscollaborationlabs/hacker-how-to) @@ -19,9 +19,9 @@ Here it is step by step ```git clone git@github.com:hwpplayer1/hacker-how-to.git``` -Then ```cd hacker-howo-to``` +Then ```cd hacker-how-to``` -After thıs change the ```origin``` with ```github``` and add ```git remote add all git@github.com:hwpplayer1/hacker-how-to.git``` +After this change the ```origin``` with ```github``` and add ```git remote add all git@github.com:hwpplayer1/hacker-how-to.git``` This will make the GitHub all address to lead all repositories diff --git a/multiple-forge.tr.md b/multiple-forge.tr.md new file mode 100644 index 0000000..a89fba2 --- /dev/null +++ b/multiple-forge.tr.md @@ -0,0 +1,59 @@ +# Aynı anda gönderilecek birden fazla Git deposu + +Öncelikle ilgili forge web kullanıcı arayüzlerinde uzaktaki adres arayüzünden depolar oluşturuyoruz. + +Bunun için aşağıdaki gibi adreslere erişiyoruz : + +* [GitHub](https://github.com/hwpplayer1/hacker-how-to) +* [GitLab](https://gitlab.com/masscollabs/masscollaborationlabs/hacker-how-to) +* [sr.ht](https://git.sr.ht/~mertgor/hacker-how-to) +* [vern.cc](https://git.vern.cc/hwpplayer1/hacker-how-to) +* [Disroot](https://git.disroot.org/hwpplayer1/hacker-how-to) +* [Codeberg](https://codeberg.org/hwpplayer1/hacker-how-to) + +ve yerel kod ortamımız ( forge ) benim için bu forgejo'dur. + +Biz SSH adreslerini ekliyoruz ancak siz https adreslerini ekleyebilirsiniz. + +Adım adım anlatımı aşağıdaki gibidir : + +```git clone git@github.com:hwpplayer1/hacker-how-to.git``` + +Sonra ```cd hacker-howo-to``` + +Ve bundan sonra ```origin``` adres ismini ```github``` ile değiştirin ve ```git remote add all git@github.com:hwpplayer1/hacker-how-to.git``` adresini all olarak ekleyin. + +Bu, GitHub'ın all olarak ilk ve lider olarak tüm depoları kapsayacak şekilde bizim içerik göndermemizi sağlaycaktır. + +Bundan sonra ```git remote add gitlab git@gitlab.com:masscollabs/masscollaborationlabs/hacker-how-to.git``` GitLab adresini ekleyelim. + +sr.ht için ```git remote add sr.ht git@git.sr.ht:~mertgor/hacker-how-to``` + +vern.cc için ```git remote add vern.cc ssh://git@vern.cc:1813/hwpplayer1/hacker-how-to.git``` + +disroot için ```git remote add disroot git@git.disroot.org:hwpplayer1/hacker-how-to.git``` + +ve Codeberg için ```git remote add codeberg git@codeberg.org:hwpplayer1/hacker-how-to.git```4 + +Bu aşamadan sonra her adres için bu komutu çalıştıracağız ```git remote set-url --add --push all``` + +Bunlar : + + +```git remote set-url --add --push all git@github.com:hwpplayer1/hacker-how-to.git``` + +```git remote set-url --add --push all git@gitlab.com:masscollabs/masscollaborationlabs/hacker-how-to.git``` + +```git remote set-url --add --push all git@git.sr.ht:~mertgor/hacker-how-to``` + +```git remote set-url --add --push all ssh://git@vern.cc:1813/hwpplayer1/hacker-how-to.git``` + +```git remote set-url --add --push all git@git.disroot.org:hwpplayer1/hacker-how-to.git``` + +```git remote set-url --add --push all git@codeberg.org:hwpplayer1/hacker-how-to.git``` + +ve benim local forge(forgejo'm)'um için ```git remote set-url --add --push all git@127.0.0.1:hwpplayer1/hacker-how-to.git``` + +Sonra kodumuzu veya içeriğimizi göndermek için sırasıyla ```git add .``` dosyalarımızı eklemek için, ```git commit -S -m "Your Commit Message"``` dosyalarımızı işlemek için, ve ```git push -uv all``` dosyalarımızı ilgili uzak depolara(forge ortamlarına) göndermek için çalıştırılacaktır. + +**mutlu hacklemeler!...**