Compare commits

..

No commits in common. "3bdc7536e6d1eed100974fbad342e45fe7e5188a" and "406c3acc43bd193195acbd7807e2841274c516b6" have entirely different histories.

5 changed files with 141 additions and 37 deletions

View File

@ -1,7 +1,3 @@
2025-02-06 Mert Gör <mertgor@masscollabs.xyz>
* README.md: deleted multiple forge articles, removed unsupprted forges
2024-10-13 Kuddusi Ömer Sıddıkoğlu <hwpplayer1@debian>
* README.md: Public Masscollabs Server address deleted

View File

@ -46,12 +46,6 @@ Please read this :
* https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits
* https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key
# Configuring User Email and User Name for commits
* https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git
* https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address
# Conclusion
* We have generated SSH Key and added our public SSH Key to our GitHub account.
@ -62,19 +56,14 @@ Please read this :
# Where we store this documentation
* https://github.com/hwpplayer1/hacker-how-to
* https://gitlab.com/masscollabs/masscollaborationlabs/hacker-how-to
* https://git.sr.ht/~mertgor/hacker-how-to
* https://git.vern.cc/hwpplayer1/hacker-how-to
* https://git.disroot.org/hwpplayer1/hacker-how-to
* https://codeberg.org/hwpplayer1/hacker-how-to
* https://git.disroot.org/hwpplayer1/hacker-how-to
* https://git.vern.cc/hwpplayer1/hacker-how-to
* https://git.sr.ht/~mertgor/hacker-how-to
* https://gitlab.com/masscollabs/masscollaborationlabs/hacker-how-to
* https://github.com/hwpplayer1/hacker-how-to
* https://git.truvalinux.org.tr/hwpplayer1/hacker-how-to
* https://git.emin.software/hwpplayer1/hacker-how-to
# License

View File

@ -55,12 +55,6 @@ Lütfen aşağıdaki bağlantıları okuyunuz :
* https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key
# Kullanıcı E-postasını ve Kullanıcı Adını commit'ler için yapılandırma
* https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git
* https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address
# Sonuç
* SSH Key'i oluşturduk ve public SSH Key'imizi GitHub hesabımıza ekledik.
@ -73,19 +67,15 @@ mutlu hacklemeler(başarılar ve başarıya ulaşmanız dileğiyle)
# Bu belgeleri nerede saklıyoruz ?
* https://github.com/hwpplayer1/hacker-how-to
* https://gitlab.com/masscollabs/masscollaborationlabs/hacker-how-to
* https://git.sr.ht/~mertgor/hacker-how-to
* https://git.vern.cc/hwpplayer1/hacker-how-to
* https://git.disroot.org/hwpplayer1/hacker-how-to
* https://codeberg.org/hwpplayer1/hacker-how-to
* https://git.disroot.org/hwpplayer1/hacker-how-to
* https://git.vern.cc/hwpplayer1/hacker-how-to
* https://git.sr.ht/~mertgor/hacker-how-to
* https://gitlab.com/masscollabs/masscollaborationlabs/hacker-how-to
* https://github.com/hwpplayer1/hacker-how-to
* https://git.truvalinux.org.tr/hwpplayer1/hacker-how-to
* https://git.emin.software/hwpplayer1/hacker-how-to
# Lisans

64
multiple-forge.md Normal file
View File

@ -0,0 +1,64 @@
# Multiple Git repositories to push at once
First we create remote repositories on the related forge web user interfaces.
For this repository they are :
* [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)
* [Truva Linux](https://git.truvalinux.org.tr/hwpplayer1/hacker-how-to)
and your local forge (for me it is forgejo)
We add SSH addresses but you may add the https addresses
Here it is step by step
```git clone git@github.com:hwpplayer1/hacker-how-to.git```
Then ```cd hacker-how-to```
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
After this add GitLab ```git remote add gitlab git@gitlab.com:masscollabs/masscollaborationlabs/hacker-how-to.git```
sr.ht ```git remote add sr.ht git@git.sr.ht:~mertgor/hacker-how-to```
vern.cc ```git remote add vern.cc ssh://git@vern.cc:1813/hwpplayer1/hacker-how-to.git```
disroot ```git remote add disroot git@git.disroot.org:hwpplayer1/hacker-how-to.git```
codeberg ```git remote add codeberg git@codeberg.org:hwpplayer1/hacker-how-to.git```
and Truva Linux ```https://git.truvalinux.org.tr/hwpplayer1/hacker-how-to.git```
After this we will execute ```git remote set-url --add --push all``` command for each git ssh address
They are :
```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```
```git remote set-url --add --push all https://git.truvalinux.org.tr/hwpplayer1/hacker-how-to.git```
and for my local forge as forgejo it is ```git remote set-url --add --push all git@127.0.0.1:hwpplayer1/hacker-how-to.git```
Then run ```git add .``` for your files ```git commit -S -m "Your Commit Message"``` and run ```git push -uv all``` to push your commits to remote.
**happy hacking!...**

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

@ -0,0 +1,65 @@
# Birden fazla forge(kod barındırma ortamına) içerik göndermek
Ö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)
* [Truva Linux](https://git.truvalinux.org.tr/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-how-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```
Codeberg için ```git remote add codeberg git@codeberg.org:hwpplayer1/hacker-how-to.git```
ve Truva Linux için ```https://git.truvalinux.org.tr/hwpplayer1/hacker-how-to.git```
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```
```git remote set-url --add --push all https://git.truvalinux.org.tr/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!...**