Skip to content

Latest commit

 

History

History
101 lines (71 loc) · 3.12 KB

File metadata and controls

101 lines (71 loc) · 3.12 KB

GitHub Upload Steps

This file contains the steps needed to upload the GitHub Project Sync Tool to GitHub.

1. Creating a New Repository on GitHub

  1. Log in to your GitHub account
  2. Click on the "+" icon in the top right corner and select "New repository"
  3. Enter the repository name as "GitHub-Project-Sync-Tool"
  4. Add a description: "A tool that allows you to manage and synchronize GitHub Projects locally"
  5. Do not check "Initialize this repository with a README"
  6. Click the "Create repository" button

2. Connecting and Uploading the Local Repository to GitHub

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

3. Verification

  1. Refresh your repository page on GitHub
  2. Verify that all files have been successfully uploaded
  3. Check that the README.md file is displayed correctly

4. Creating a Release (Optional)

  1. Click on the "Releases" tab on your GitHub repository page
  2. Click the "Create a new release" button
  3. Enter the tag version as "v1.0.0"
  4. Enter the release title as "Initial Release"
  5. Add release notes
  6. Click the "Publish release" button

GitHub'a Yükleme Adımları

Bu dosya, GitHub Project Sync Tool'u GitHub'a yüklemek için gerekli adımları içerir.

1. GitHub'da Yeni Bir Repo Oluşturma

  1. GitHub hesabınıza giriş yapın
  2. Sağ üst köşedeki "+" simgesine tıklayın ve "New repository" seçeneğini seçin
  3. Repository adını "GitHub-Project-Sync-Tool" olarak girin
  4. Açıklama ekleyin: "GitHub Projects'i yerel olarak yönetmenize ve senkronize etmenize olanak tanıyan bir araç"
  5. "Initialize this repository with a README" seçeneğini işaretlemeyin
  6. "Create repository" butonuna tıklayın

2. Yerel Repoyu GitHub'a Bağlama ve Yükleme

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

3. Doğrulama

  1. GitHub'da repository sayfanızı yenileyin
  2. Tüm dosyaların başarıyla yüklendiğini doğrulayın
  3. README.md dosyasının düzgün görüntülendiğini kontrol edin

4. Sürüm Oluşturma (İsteğe Bağlı)

  1. GitHub'da repository sayfanızda "Releases" sekmesine tıklayın
  2. "Create a new release" butonuna tıklayın
  3. Tag sürümünü "v1.0.0" olarak girin
  4. Sürüm başlığını "İlk Sürüm" olarak girin
  5. Sürüm notlarını ekleyin
  6. "Publish release" butonuna tıklayın