Skip to content

sfordevops/MasteringGit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

This Project deals with all the git realated activities

Creating a New Repository

echo "# MasteringGit" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin <Repo Link>
git push -u origin main

Git Stages

  • Untracked: Files are not tracked/qrecorded for any modifications

  • Staged/Tracked: Woerk In progress, The files are being tracked by GIT

git add filename

  • Commited: you are done with the changes and you want to send the changes to remote repository

git commit -m "commit message"

Here is the link for MarkDown-Cheatsheet

Configuring Remote Repo

  • Create a GitHub Account for maintaining the remote repositories

Resources To Learn Git

Git Useful Commands and Links

Git Branching Stratagies

Advanced Git

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •