This file contains the steps needed to upload the GitHub Project Sync Tool to GitHub.
- Log in to your GitHub account
- Click on the "+" icon in the top right corner and select "New repository"
- Enter the repository name as "GitHub-Project-Sync-Tool"
- Add a description: "A tool that allows you to manage and synchronize GitHub Projects locally"
- Do not check "Initialize this repository with a README"
- Click the "Create repository" button
Run the following commands in order:
# If not already a git repository, initialize one
git init
# Add the remote (replace USERNAME with your GitHub username)
git remote add origin https://github.com/USERNAME/GitHub-Project-Sync-Tool.git
# Add all files to staging
git add .
# Create the first commit
git commit -m "Initial version: GitHub Project Sync Tool"
# Create and push the main branch
git branch -M main
git push -u origin main- Refresh your repository page on GitHub
- Verify that all files have been successfully uploaded
- Check that the README.md file is displayed correctly
- Click on the "Releases" tab on your GitHub repository page
- Click the "Create a new release" button
- Enter the tag version as "v1.0.0"
- Enter the release title as "Initial Release"
- Add release notes
- Click the "Publish release" button
Bu dosya, GitHub Project Sync Tool'u GitHub'a yüklemek için gerekli adımları içerir.
- GitHub hesabınıza giriş yapın
- Sağ üst köşedeki "+" simgesine tıklayın ve "New repository" seçeneğini seçin
- Repository adını "GitHub-Project-Sync-Tool" olarak girin
- Açıklama ekleyin: "GitHub Projects'i yerel olarak yönetmenize ve senkronize etmenize olanak tanıyan bir araç"
- "Initialize this repository with a README" seçeneğini işaretlemeyin
- "Create repository" butonuna tıklayın
Aşağıdaki komutları sırasıyla çalıştırın:
# Eğer henüz bir git reposu değilse, git reposu oluşturun
git init
# Remote'u ekleyin (KULLANICI_ADI kısmını kendi GitHub kullanıcı adınızla değiştirin)
git remote add origin https://github.com/KULLANICI_ADI/GitHub-Project-Sync-Tool.git
# Tüm dosyaları staging'e ekleyin
git add .
# İlk commit'i oluşturun
git commit -m "İlk sürüm: GitHub Project Sync Tool"
# Main branch'ini oluşturun ve push edin
git branch -M main
git push -u origin main- GitHub'da repository sayfanızı yenileyin
- Tüm dosyaların başarıyla yüklendiğini doğrulayın
- README.md dosyasının düzgün görüntülendiğini kontrol edin
- GitHub'da repository sayfanızda "Releases" sekmesine tıklayın
- "Create a new release" butonuna tıklayın
- Tag sürümünü "v1.0.0" olarak girin
- Sürüm başlığını "İlk Sürüm" olarak girin
- Sürüm notlarını ekleyin
- "Publish release" butonuna tıklayın