Welcome To GitHub Basics


✅ Why Use Git & GitHub?


Git Commands Example

            
        git init
        git add .
        git commit -m "Initial commit"
        git push origin main
            
        

Python Code

            
            print("Hello, World!")
            def add(a, b):
                return a + b
            
        

Java Code Example

            
        public class HelloWorld {
            public static void main(String[] args) {
                System.out.println("Hello, World!");
            }
        }
            
        

📘 Project Documentation

loading...[updating]...