DevOps  

Uploading Files and Folders to GitHub

Overview

Uploading files and folders to GitHub can be done using either the GitHub web interface (UI) or the command line (terminal). Both methods are suitable for different scenarios: the UI is best for small projects, while the terminal method is recommended for larger projects or when working with Git locally.

Method 1: Using the GitHub Web Interface

Create a Repository

Log in to GitHub and click the “New repository” button.

git 1

Enter a repository name, description, and choose whether it should be public or private.

Git 2

Optionally, initialize the repository with a README file.

Git 3

Upload Files

Navigate to the repository’s main page.

Git 4

Click the “Add file” dropdown and select “Upload files

Git 5

Drag and drop files or folders, or click “Choose your files” to browse.

Git 6

Add a commit message describing the changes.

Click “Commit changes” to upload the files.

Git 7

Method 2: Using the Terminal (Command Line)

Create an Empty Repository

  • On GitHub, create a new repository without initializing it with a README.

Git 8Git 9

Initialize Git Locally

  • Open a terminal and navigate to your project folder.

  • Run git init to initialize the folder as a Git repository.

  • Create a README file: touch README.md.

Git 10

Stage and Commit Files

  • Stage all files: git add.

  • Commit the changes: git commit -m "Initial commit".​

Link to GitHub Repository

  • Set the main branch: git branch -M main

  • Add the remote origin: git remote add origin <repository-url>

  • Push files to GitHub: git push -u origin main.

Git 12 commands

Git 11

Best Practices

  • Always use a meaningful commit message to describe changes. ​

  • Avoid uploading sensitive data (passwords, API keys etc.) to public repositories.

  • For large files, consider using Git LFS (Large File Storage) or alternative hosting solutions. ​

  • Maintain a README file to document your project and provide instructions

MethodBest ForSteps
Web UISmall projectsCreate repo, upload files, commit
TerminalLarge projectsInit, add, commit, push

This provides a clear, step-by-step guide for uploading files and folders to GitHub, suitable for both beginners and experienced users.​