Typo fix for mutliple forge English markdown file and translated it to Turkish

This commit is contained in:
Mert Gör ☭ 2024-02-16 16:33:42 +03:00
parent 4b629f5c65
commit 26a7f9de76
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 62 additions and 3 deletions

View File

@ -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

59
multiple-forge.tr.md Normal file
View File

@ -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](http://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!...**