GIT/GITHUB COMMANDS

GIT/GITHUB COMMANDS
Git is a powerful version control system that helps you track changes and collaborate on code. This post breaks down 11 must-know Git and GitHub commands in a beginner-friendly way. 1. git ini...
0 Read More

Git/Git Hub commands

Git/Git Hub commands
Git Basic Command: git init: initialize an existing directory as a Git repository git add: add a file as it looks now to your next commit (stage) git commit: Adding commits keep track of ...
0 Read More

GIT COMMANDS

GIT COMMANDS
1. Initialize the Git Repository To begin tracking a project with Git, open the terminal in the project directory and run:git init2. Add Files to the Staging Area To track all current changes in the p...
0 Read More

USEFUL GIT COMMANDS

USEFUL GIT COMMANDS
✅1. git diffDescription: Shows the differences between files in your working directory and the index (staging area).Command: git diffScreenshot: ✅2. git logDescription: Displays the commit history...
0 Read More

Git Submodule Update

Submodules are git's solution for embedding a repository into another. Some of the most often use cases for submodules are the following: Embedding shared modules into multiple other repositories, ...
0 Read More