Push Code from Local to Git Repository | Git Commands | Git Commit | Git Push (Beginner Friendly)
In this video, you’ll learn how to push code from your local machine to a Git repository step by step. This tutorial is perfect for beginners who want to understand Git basics clearly and practically.
🔹 What you’ll learn in this video:
What is Git and why it is used
Initialize a Git repository (git init)
Check file status using git status
Add files to staging area (git add)
Commit changes with a message (git commit)
Connect local repo to remote Git repository
Push code to remote repository using git push
🔹 Commands covered:
set your user name:
git config --global user.name "cloudtechram"
Set your email address:
git config --global user.email "@gmail.com"
git config --global init.defaultBranch main
git config --global http.sslVerify false
git init
git remote add origin https://[email protected]/cloudtechram/Sales/_git/SalesHomeUI
git remote set-url origin https://[email protected]/cloudtechram/Sales/_git/SalesHomeUI
git pull origin main
git add --all
git commit -m "first commit"
git push -u origin main
List All branches
git branch -a
Fetch all branches
git fetch --all
create a new branch
git branch feature
switch Branch
git checkout featureLogin
git pull origin feature
stage specific file
git add "path"
commit a staged file
git commit -m "comment"
push committed changes
git push -u origin featureLogin
Join the community to download all supporting files.
Telegram https://t.me/CloudTechRam
WhatsApp : https://whatsapp.com/channel/0029VaAV...
Follow me on LinkedIn
www.linkedin.com/in/ramkumar-rajendran
Azure DevOps playlist
• Azure DevOps for beginners
1.What is Azure DevOps ? Introduction | Account creation | Walk through for beginners
• 1.What is Azure DevOps ? Introduction | A...
2.Azure DevOps Boards process template selection | Agile | Basic | CMMI | Scrum
• 2.Azure DevOps Boards process template sel...
3.What is Epic features in Azure DevOps | Agile | Priority | Time criticality | Business value | Risk
• 3.What is Epic features in Azure DevOps | ...
4.User story and Task explained | Story points | orginal estimation | Acceptance criteria
• 4.User story and Task explained | Story po...
5.Area path and Team Explained | Azure DevOps Tutorial for Beginners
• 5.Area path and Team Explained | Azure Dev...
6.Bugs and Issue explained | Azure DevOps
• 6.Bugs and Issue explained | Azure DevOps
7.Kanban Boards explained in detail along with customization | Azure DevOps
• 7.Kanban Boards explained in detail along ...
8.Add Custom columns to Kanban boards | Set WIP limit | rename columns
• 8.Add Custom columns to Kanban boards | Se...
9.Swim lanes Explained in Detail
• 9.Swim lanes Explained in Detail
10.Backlogs mapping Explained | Parents | Keep Hierarchy | InProgress | Azure DevOps boards
• 10.Backlogs mapping Explained | Parents | ...
11.Iteration Path Explained | Add sprint to your team | Azure DevOps
• 11.Iteration Path Explained | Add sprint t...
12.How to do Sprint Planning in Azure DevOps | Capacity planning | reorder | Team days off
• 12.How to do Sprint Planning in Azure DevO...
13.Velocity Forecast in sprint planning | Average velocity calculation
• 13.Velocity Forecast in sprint planning | ...
14.How to conduct daily stand-up call with Azure DevOps boards
• 14.How to conduct daily stand-up call with...
15.Retrospective meeting setup in azure DevOps boards
• 15.Retrospective meeting setup in azure De...
16.Query explained in Detail | Azure DevOps for beginners
• 16.Query explained in Detail | Azure DevOp...
17.Delivery plans in Azure DevOps boards | Explained | dependencies | successor | Processor | access
• 17.Delivery plans in Azure DevOps boards |...
18.Azure DevOps Demo Generator | copy prebuild project for practice
• 18.Azure DevOps Demo Generator | copy preb...
19.Add team member and access
• 19. Add team member and access
20.Work Item templates explained | create work items with prepopulated values
• 20. Work Item templates explained | create...
21. GitHub Integration with Azure DevOps | Add link to GitHub commit | Update state from GitHub
• 21. GitHub Integration with Azure DevOps |...
22.Customize Azure Boards processes | Create an inherited process | add new work item type | New field
• 22. Customize Azure Boards processes | Cre...
23.Customize state of Work item | custom Agile template
• 23. Customize state of Work item | custom ...
24.Add a rule to a work item type | Templates
• 24. Add a rule to a work item type | Templ...
25.Change Work Item Type in Azure DevOps
• 25. Change Work Item Type in Azure DevOps
26.Set Boards Permission | Azure DevOps Boards
• 26. Set Boards Permission | Azure DevOps B...
27.Getting started with Azure Repos | commands
• 27. Push code from local into git repo | G...
28.Create new branch and push the changes from local via Git commands
• 28. Create new branch and push the changes...
29.Pull Request explained in detail
• 29. Pull Request explained in detail
30.Import GitHub repos into Azure DevOps repos
• 30. Import GitHub repos into Azure DevOps ...
Playlist
Git and Git Hub Tutorial :
• What is Git | version control |Basic conce...
Azure DevOps tutorial :
• Video